Skip to content
undefineds.h 1.94 KiB
Newer Older
wlott's avatar
wlott committed
/* Routines that must be linked into the core for lisp to work. */
hallgren's avatar
hallgren committed
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/undefineds.h,v 1.3 1994/03/27 15:24:12 hallgren Exp $ */
wlott's avatar
wlott committed

/* Pick up all the syscalls. */
accept,
access,
acct,
wlott's avatar
wlott committed
adjtime,
wlott's avatar
wlott committed
bind,
brk,
chdir,
chmod,
chown,
chroot,
close,
connect,
creat,
dup,
dup2,
execve,
exit,
fchmod,
fchown,
fcntl,
wlott's avatar
wlott committed
flock,
wlott's avatar
wlott committed
fork,
fstat,
fsync,
ftruncate,
wlott's avatar
wlott committed
getdtablesize,
wlott's avatar
wlott committed
getegid,
geteuid,
getgid,
getgroups,
gethostid,
gethostname,
getitimer,
wlott's avatar
wlott committed
getpagesize,
wlott's avatar
wlott committed
getpeername,
getpgrp,
getpid,
getppid,
getpriority,
getrlimit,
wlott's avatar
wlott committed
getrusage,
wlott's avatar
wlott committed
getsockname,
getsockopt,
gettimeofday,
getuid,
ioctl,
kill,
killpg,
link,
listen,
lseek,
lstat,
mkdir,
mknod,
mount,
open,
pipe,
profil,
ptrace,
hallgren's avatar
hallgren committed
#if !defined(SUNOS) && !defined(parisc) && !defined(osf1)
wlott's avatar
wlott committed
quota,
#endif
read,
readlink,
readv,
reboot,
recv,
recvfrom,
recvmsg,
rename,
rmdir,
sbrk,
select,
send,
sendmsg,
sendto,
setgroups,
#ifndef SUNOS
sethostid,
#endif
sethostname,
setitimer,
setpgrp,
setpriority,
hallgren's avatar
hallgren committed
#if !defined(SUNOS) && !defined(parisc) && !defined(osf1)
wlott's avatar
wlott committed
setquota,
#endif
wlott's avatar
wlott committed
setregid,
setreuid,
wlott's avatar
wlott committed
setrlimit,
setsockopt,
settimeofday,
shutdown,
sigblock,
sigpause,
#if !defined(ibmrt) && !defined(hpux)
wlott's avatar
wlott committed
sigreturn,
#endif
sigsetmask,
sigstack,
sigvec,
socket,
socketpair,
stat,
swapon,
symlink,
sync,
syscall,
#ifdef hpux
closedir,
opendir,
readdir,
tcgetattr,
tcsetattr,
#endif
wlott's avatar
wlott committed
truncate,
umask,
#if !defined(SUNOS) && !defined(parisc)
umount,
#endif
unlink,
wlott's avatar
wlott committed
utimes,
wlott's avatar
wlott committed
vfork,
hallgren's avatar
hallgren committed
#ifndef osf1
wlott's avatar
wlott committed
vhangup,
hallgren's avatar
hallgren committed
#endif
wlott's avatar
wlott committed
wait,
wait3,
write,
writev,

/* Math routines. */
cos,
sin,
tan,
acos,
asin,
atan,
atan2,
sinh,
cosh,
tanh,
wlott's avatar
wlott committed
asinh,
acosh,
atanh,
wlott's avatar
wlott committed
exp,
wlott's avatar
wlott committed
expm1,
wlott's avatar
wlott committed
log,
log10,
wlott's avatar
wlott committed
log1p,
wlott's avatar
wlott committed
pow,
wlott's avatar
wlott committed
cbrt,
wlott's avatar
wlott committed
sqrt,
hypot,

/* Network support. */
gethostbyname,
gethostbyaddr,

/* Other random things. */
getwd,
ttyname
hallgren's avatar
hallgren committed