libutil: add O_NOCTTY back to old pty open code
[minix.git] / lib / libc / sys-minix / getegid.c
blobe77649e1af1e076505a07c4cdd7adc20b597fdb9
1 #include <sys/cdefs.h>
2 #include "namespace.h"
3 #include <lib.h>
5 #include <unistd.h>
7 #ifdef __weak_alias
8 __weak_alias(getegid, _getegid)
9 #endif
11 gid_t getegid()
13 message m;
15 /* POSIX says that this function is always successful and that no
16 * return value is reserved to indicate an error. Minix syscalls
17 * are not always successful and Minix returns the unreserved value
18 * (gid_t) -1 when there is an error.
20 if (_syscall(PM_PROC_NR, GETGID, &m) < 0) return ( (gid_t) -1);
21 return( (gid_t) m.m2_i1);