diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-26 12:26:41 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-26 12:26:41 +0000 |
commit | 801c69a4187fb34570bc52efc1c1b3957435f7cf (patch) | |
tree | 865f8d77db360f7b1dd66e6a1bf3f9aa7fc65660 | |
parent | 3b262f2d7e5d21bef6bb8bf540947a65f4ef93c2 (diff) |
don't pretend to be reentrant yet
-rw-r--r-- | libc/inet/rpc/rcmd.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libc/inet/rpc/rcmd.c b/libc/inet/rpc/rcmd.c index 20c572b45..538901fd4 100644 --- a/libc/inet/rpc/rcmd.c +++ b/libc/inet/rpc/rcmd.c @@ -37,6 +37,12 @@ static char sccsid[] = "@(#)rcmd.c 8.3 (Berkeley) 3/26/94"; #define __FORCE_GLIBC #include <features.h> + +#ifdef _LIBC_REENTRANT +#undef _LIBC_REENTRANT +#warning FIXME I am not reentrant yet... +#endif + #define __USE_GNU #include <ctype.h> #include <stdio.h> |