diff options
author | Thomas Bushnell <thomas@gnu.org> | 1996-10-24 19:28:16 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1996-10-24 19:28:16 +0000 |
commit | 592615ea7df69c2728362bd4238730d050c07312 (patch) | |
tree | 1c064c8fd5c45ec621799def8cbcf6d1f11cdafb /libshouldbeinlibc/idvec.h | |
parent | 46b6fea942cd4840f5510cd06629e8c91fb55c11 (diff) | |
download | hurd-592615ea7df69c2728362bd4238730d050c07312.tar.gz hurd-592615ea7df69c2728362bd4238730d050c07312.tar.bz2 hurd-592615ea7df69c2728362bd4238730d050c07312.zip |
Mon Oct 21 22:00:44 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* argp.h: Add extern inline protection.
* idvec.h: Likewise.
* maptime.h: Likewise.
* argp.c, idvec-funcs.c, maptime-funcs.c: New files.
* Makefile (SRCS): Add argp.c, idvec-funcs.c, and
maptime-funcs.c.
Diffstat (limited to 'libshouldbeinlibc/idvec.h')
-rw-r--r-- | libshouldbeinlibc/idvec.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libshouldbeinlibc/idvec.h b/libshouldbeinlibc/idvec.h index 8e99d433..efef22f5 100644 --- a/libshouldbeinlibc/idvec.h +++ b/libshouldbeinlibc/idvec.h @@ -25,6 +25,10 @@ #include <errno.h> #include <hurd/hurd_types.h> +#ifndef IDVEC_EI +#define IDVEC_EI extern inline +#endif + struct idvec { uid_t *ids; @@ -44,7 +48,7 @@ void idvec_free_wrapper (struct idvec *idvec); void idvec_free (struct idvec *idvec); /* Mark IDVEC as not containing any ids. */ -extern inline void +IDVEC_EI void idvec_clear (struct idvec *idvec) { idvec->num = 0; |