mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
* misc/Makefile (headers): Rename queue.h to sys/queue.h.
* misc/queue.h: Moved to misc/sys/queue.h.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
Sun Jan 21 00:55:25 1996 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
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
|
* sysdeps/unix/sysv/linux/shmat.c: Include sys/shm.h instead of
|
||||||
sys/sem.h.
|
sys/sem.h.
|
||||||
|
|
||||||
|
@ -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 \
|
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 \
|
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 \
|
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 \
|
routines := brk sbrk sstk ioctl \
|
||||||
readv writev \
|
readv writev \
|
||||||
|
@ -50,7 +50,11 @@ void exit ();
|
|||||||
/* If NULL, error will flush stdout, then print on stderr the program
|
/* If NULL, error will flush stdout, then print on stderr the program
|
||||||
name, a colon and a space. Otherwise, error will call this
|
name, a colon and a space. Otherwise, error will call this
|
||||||
function without parameters instead. */
|
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. */
|
/* This variable is incremented each time `error' is called. */
|
||||||
unsigned int error_message_count;
|
unsigned int error_message_count;
|
||||||
|
1
sys/queue.h
Normal file
1
sys/queue.h
Normal file
@ -0,0 +1 @@
|
|||||||
|
#include <misc/sys/queue.h>
|
Reference in New Issue
Block a user