diff options
author | Roland McGrath <roland@gnu.org> | 1995-11-28 10:00:22 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-11-28 10:00:22 +0000 |
commit | b7843ea9ff56cd1e941abf9fab7c9c8c4e7dde69 (patch) | |
tree | 59e04b0ae123337402156d38d0722f1a30a93b25 /posix/Makefile | |
parent | 1ed0083ca991ab3723047afa783ed8ecbd6b8779 (diff) | |
download | glibc-b7843ea9ff56cd1e941abf9fab7c9c8c4e7dde69.tar.gz glibc-b7843ea9ff56cd1e941abf9fab7c9c8c4e7dde69.tar.xz glibc-b7843ea9ff56cd1e941abf9fab7c9c8c4e7dde69.zip |
Mon Nov 27 19:24:18 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> cvs/libc-951129 cvs/libc-951128
* posix/Makefile (routines): Add getsid. * sysdeps/unix/sysv/linux/getsid.S: New file. * sysdeps/mach/hurd/getsid.c: New file. * sysdeps/stub/getsid.c: New file. * posix/unistd.h [__USE_GNU]: Declare getsid.
Diffstat (limited to 'posix/Makefile')
-rw-r--r-- | posix/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/Makefile b/posix/Makefile index 937dc04880..4760512af6 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -37,7 +37,7 @@ routines := \ execve fexecve execv execle execl execvp execlp \ getpid getppid \ getuid geteuid getgid getegid getgroups setuid setgid group_member \ - getpgid setpgid getpgrp setsid \ + getpgid setpgid getpgrp getsid setsid \ getlogin setlogin \ pathconf sysconf fpathconf \ glob fnmatch regex \ @@ -59,7 +59,7 @@ lib: $(objpfx)libposix.a glob.tar: glob/ChangeLog glob/COPYING.LIB \ glob/Makefile.in glob/configure glob/configure.in glob/configure.bat\ - glob/fnmatch.h glob/glob.h glob/fnmatch.c glob/glob.c + glob/fnmatch.h glob/glob.h glob/fnmatch.c glob/glob.c tar cho$(verbose)f $@ $^ glob/%.c: %.c rm -f $@ |