]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Define gid_t and uid_t.
authorUlrich Drepper <drepper@redhat.com>
Fri, 17 Mar 2000 03:25:11 +0000 (03:25 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 17 Mar 2000 03:25:11 +0000 (03:25 +0000)
streams/stropts.h

index 52d0a04c534a5d527a4d3ff2f8eba0accb96c51f..b7af81ede32e03208ae9dd2c2f481b80d8741680 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1998, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
 #include <features.h>
 #include <bits/types.h>
 
+#ifndef gid_t
+typedef __gid_t gid_t;
+# define gid_t gid_t
+#endif
+
+#ifndef uid_t
+typedef __uid_t uid_t;
+# define uid_t uid_t
+#endif
+
+typedef __t_uscalar_t t_uscalar_t;
+
 /* Get system specific contants.  */
 #include <bits/stropts.h>