From ca55abf319c2f815cb2c84655b25482829c1646d Mon Sep 17 00:00:00 2001 From: deischen Date: Mon, 29 Jan 2001 03:23:46 +0000 Subject: Clean up syscall generation in libc by removing HIDDEN_SYSCALLS and treating (almost) all system calls the same way: __sys_foo - actual syscall foo, _foo - weak definitions to __sys_foo Change PSEUDO syscalls (currently only _exit and _getlogin) to be __sys_foo (T) and _foo (W). Add $FreeBSD$ to a few files to satisfy commitprep. Suggested by: bde --- lib/libc/i386/sys/Makefile.inc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'lib/libc/i386/sys/Makefile.inc') diff --git a/lib/libc/i386/sys/Makefile.inc b/lib/libc/i386/sys/Makefile.inc index 4a60875..98d9deb 100644 --- a/lib/libc/i386/sys/Makefile.inc +++ b/lib/libc/i386/sys/Makefile.inc @@ -14,11 +14,7 @@ NOASM= __semctl.o break.o exit.o ftruncate.o getdomainname.o getlogin.o \ semop.o setdomainname.o shmat.o shmctl.o shmdt.o shmget.o sstk.o \ truncate.o uname.o vfork.o yield.o -PSEUDO= _getlogin.o - -# Pseudo syscalls that are renamed as __sys_{pseudo} so that libc_r can -# override them with replacements. -PSEUDOR= _exit.o +PSEUDO= _getlogin.o _exit.o .if ${LIB} == "c" MAN2+= i386_get_ioperm.2 i386_get_ldt.2 i386_vm86.2 -- cgit v1.1