Procházet zdrojové kódy

Forgot a few things...

Eric Andersen před 25 roky
rodič
revize
4e766ab43c
2 změnil soubory, kde provedl 9 přidání a 1 odebrání
  1. 8 0
      include/unistd.h
  2. 1 1
      libc/sysdeps/linux/i386/Makefile

+ 8 - 0
include/unistd.h

@@ -102,6 +102,14 @@ extern __gid_t getgid __P ((void));
 /* Get the effective group ID of the calling process.  */
 extern __gid_t getegid __P ((void));
 
+/* Set the real user ID of the calling process to RUID,
+   and the effective user ID of the calling process to EUID.  */
+extern int setreuid __P ((__uid_t __ruid, __uid_t __euid));
+
+/* Set the real group ID of the calling process to RGID,
+   and the effective group ID of the calling process to EGID.  */
+extern int setregid __P ((__gid_t __rgid, __gid_t __egid));
+
 /* If SIZE is zero, return the number of supplementary groups
    the calling process is in.  Otherwise, fill in the group IDs
    of its supplementary groups in LIST and return the number written.  */

+ 1 - 1
libc/sysdeps/linux/i386/Makefile

@@ -44,7 +44,7 @@ $(LIBC): ar-target
 ar-target: $(OBJS)
 	$(AR) $(ARFLAGS) $(LIBC) $(OBJS)
 
-$(SOBJS):
+$(SOBJS): 
 	$(CC) $(CFLAGS) $< -c $*.S -o $*.o
 	$(STRIPTOOL) -x -R .note -R .comment $*.o