* misc/Makefile (headers): Rename queue.h to sys/queue.h.

* misc/queue.h: Moved to misc/sys/queue.h.
This commit is contained in:
Roland McGrath 1996-01-22 10:00:24 +00:00
parent bbed653cda
commit f2f7f9e665
5 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,8 @@
Sun Jan 21 00:55:25 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* misc/Makefile (headers): Rename queue.h to sys/queue.h.
* misc/queue.h: Moved to misc/sys/queue.h.
* sysdeps/unix/sysv/linux/shmat.c: Include sys/shm.h instead of
sys/sem.h.

View File

@ -26,7 +26,7 @@ headers := sys/uio.h sys/ioctl.h sys/ptrace.h ioctls.h sys/file.h \
a.out.h nlist.h stab.h stab.def sgtty.h sys/dir.h sys/cdefs.h \
ttyent.h syscall.h syslog.h sys/syslog.h paths.h sys/reboot.h \
sys/mman.h sys/param.h fstab.h mntent.h search.h utmp.h \
err.h error.h queue.h
err.h error.h sys/queue.h
routines := brk sbrk sstk ioctl \
readv writev \

View File

@ -50,7 +50,11 @@ void exit ();
/* If NULL, error will flush stdout, then print on stderr the program
name, a colon and a space. Otherwise, error will call this
function without parameters instead. */
void (*error_print_progname) ();
void (*error_print_progname) (
#if __STDC__
void
#endif
);
/* This variable is incremented each time `error' is called. */
unsigned int error_message_count;

1
sys/queue.h Normal file
View File

@ -0,0 +1 @@
#include <misc/sys/queue.h>