Changeset 9c49db4 in rtems
- Timestamp:
- 01/08/01 18:26:44 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 81f6e8cc
- Parents:
- ac5c8c7
- Files:
-
- 272 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libcsupport/src/Makefile.am
rac5c8c7 r9c49db4 70 70 71 71 AM_CFLAGS += $(LIBC_DEFINES) 72 INCLUDES += -I. 72 73 73 74 all-local: ${ARCH} $(TMPINSTALL_FILES) -
c/src/exec/libcsupport/src/__brk.c
rac5c8c7 r9c49db4 14 14 */ 15 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 19 16 20 #include <rtems.h> 17 21 #if !defined(RTEMS_UNIX) -
c/src/exec/libcsupport/src/__getpid.c
rac5c8c7 r9c49db4 5 5 * $Id$ 6 6 */ 7 8 #if HAVE_CONFIG_H 9 #include "config.h" 10 #endif 7 11 8 12 #include <unistd.h> -
c/src/exec/libcsupport/src/__gettod.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
c/src/exec/libcsupport/src/__sbrk.c
rac5c8c7 r9c49db4 14 14 */ 15 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 19 16 20 #include <rtems.h> 17 21 #if !defined(RTEMS_UNIX) -
c/src/exec/libcsupport/src/__times.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/access.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/exec/libcsupport/src/assoc.c
rac5c8c7 r9c49db4 5 5 * $Id$ 6 6 */ 7 8 #if HAVE_CONFIG_H 9 #include "config.h" 10 #endif 7 11 8 12 #include <rtems.h> -
c/src/exec/libcsupport/src/assocnamebad.c
rac5c8c7 r9c49db4 5 5 * $Id$ 6 6 */ 7 8 #if HAVE_CONFIG_H 9 #include "config.h" 10 #endif 7 11 8 12 #include <rtems.h> -
c/src/exec/libcsupport/src/base_fs.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/cfgetispeed.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/cfgetospeed.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/cfsetispeed.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/cfsetospeed.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/chdir.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/chmod.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/chown.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/stat.h> -
c/src/exec/libcsupport/src/close.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
c/src/exec/libcsupport/src/closedir.c
rac5c8c7 r9c49db4 41 41 #endif /* LIBC_SCCS and not lint */ 42 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 46 43 47 #include <sys/types.h> 44 48 #include <dirent.h> … … 46 50 #include <unistd.h> 47 51 #include <errno.h> 48 49 52 50 53 #include <rtems/libio_.h> -
c/src/exec/libcsupport/src/creat.c
rac5c8c7 r9c49db4 4 4 5 5 /* creat() "system call" */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 /* This is needed by f2c and therefore the SPEC benchmarks. */ -
c/src/exec/libcsupport/src/ctermid.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/dup.c
rac5c8c7 r9c49db4 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 17 14 18 #include <unistd.h> 15 19 #include <fcntl.h> -
c/src/exec/libcsupport/src/dup2.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/exec/libcsupport/src/error.c
rac5c8c7 r9c49db4 6 6 */ 7 7 8 #if HAVE_CONFIG_H 9 #include "config.h" 10 #endif 8 11 9 12 /* -
c/src/exec/libcsupport/src/eval.c
rac5c8c7 r9c49db4 13 13 * $Id$ 14 14 */ 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 #include <rtems.h> -
c/src/exec/libcsupport/src/fchdir.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/exec/libcsupport/src/fchmod.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/exec/libcsupport/src/fcntl.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/exec/libcsupport/src/fdatasync.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/exec/libcsupport/src/fpathconf.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
c/src/exec/libcsupport/src/fs_null_handlers.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <errno.h> -
c/src/exec/libcsupport/src/fstat.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/stat.h> -
c/src/exec/libcsupport/src/fsync.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/exec/libcsupport/src/ftruncate.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/exec/libcsupport/src/getcwd.c
rac5c8c7 r9c49db4 36 36 * $Id$ 37 37 */ 38 39 #if HAVE_CONFIG_H 40 #include "config.h" 41 #endif 38 42 39 43 /* -
c/src/exec/libcsupport/src/getdents.c
rac5c8c7 r9c49db4 17 17 * $Id$ 18 18 */ 19 20 #if HAVE_CONFIG_H 21 #include "config.h" 22 #endif 19 23 20 24 #include <errno.h> -
c/src/exec/libcsupport/src/getgrent.c
rac5c8c7 r9c49db4 9 9 */ 10 10 11 #if HAVE_CONFIG_H 12 #include "config.h" 13 #endif 11 14 12 15 #include <stdio.h> -
c/src/exec/libcsupport/src/getpwent.c
rac5c8c7 r9c49db4 8 8 * $Id$ 9 9 */ 10 11 #if HAVE_CONFIG_H 12 #include "config.h" 13 #endif 10 14 11 15 #include <stdio.h> -
c/src/exec/libcsupport/src/gxx_wrappers.c
rac5c8c7 r9c49db4 16 16 * 17 17 */ 18 19 #if HAVE_CONFIG_H 20 #include "config.h" 21 #endif 18 22 19 23 /* We might not need, defined just in case */ -
c/src/exec/libcsupport/src/hosterr.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/ioctl.c
rac5c8c7 r9c49db4 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <rtems/libio_.h> -
c/src/exec/libcsupport/src/isatty.c
rac5c8c7 r9c49db4 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <sys/stat.h> -
c/src/exec/libcsupport/src/libio.c
rac5c8c7 r9c49db4 13 13 * $Id$ 14 14 */ 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 #include <rtems/libio_.h> /* libio_.h pulls in rtems */ -
c/src/exec/libcsupport/src/libio_sockets.c
rac5c8c7 r9c49db4 12 12 * $Id$ 13 13 */ 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 14 18 15 19 #include <rtems/libio_.h> /* libio_.h pulls in rtems */ -
c/src/exec/libcsupport/src/link.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/lseek.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <stdio.h> -
c/src/exec/libcsupport/src/malloc.c
rac5c8c7 r9c49db4 12 12 * $Id$ 13 13 */ 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 14 18 15 19 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
c/src/exec/libcsupport/src/mallocfreespace.c
rac5c8c7 r9c49db4 12 12 * $Id$ 13 13 */ 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 14 18 15 19 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
c/src/exec/libcsupport/src/mkdir.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/types.h> -
c/src/exec/libcsupport/src/mkfifo.c
rac5c8c7 r9c49db4 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 17 14 18 #include <sys/types.h> 15 19 #include <sys/stat.h> -
c/src/exec/libcsupport/src/mknod.c
rac5c8c7 r9c49db4 15 15 * $Id$ 16 16 */ 17 18 #if HAVE_CONFIG_H 19 #include "config.h" 20 #endif 17 21 18 22 #include <sys/types.h> -
c/src/exec/libcsupport/src/mount.c
rac5c8c7 r9c49db4 17 17 * $Id$ 18 18 */ 19 20 #if HAVE_CONFIG_H 21 #include "config.h" 22 #endif 19 23 20 24 #include <sys/types.h> -
c/src/exec/libcsupport/src/newlibc.c
rac5c8c7 r9c49db4 13 13 * 14 14 */ 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ … … 332 336 */ 333 337 334 #include < stdio.h>338 #include <unistd.h> 335 339 336 340 #if !defined(RTEMS_UNIX) -
c/src/exec/libcsupport/src/no_libc.c
rac5c8c7 r9c49db4 13 13 */ 14 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 15 18 16 19 #include <rtems.h> -
c/src/exec/libcsupport/src/no_posix.c
rac5c8c7 r9c49db4 16 16 * $Id$ 17 17 */ 18 19 #if HAVE_CONFIG_H 20 #include "config.h" 21 #endif 18 22 19 23 #include <rtems.h> -
c/src/exec/libcsupport/src/open.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
c/src/exec/libcsupport/src/opendir.c
rac5c8c7 r9c49db4 40 40 static char sccsid[] = "@(#)opendir.c 5.11 (Berkeley) 2/23/91"; 41 41 #endif /* LIBC_SCCS and not lint */ 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 42 46 43 47 #include <dirent.h> -
c/src/exec/libcsupport/src/pathconf.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/exec/libcsupport/src/pipe.c
rac5c8c7 r9c49db4 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 17 14 18 #include <errno.h> 15 19 -
c/src/exec/libcsupport/src/printk.c
rac5c8c7 r9c49db4 19 19 +--------------------------------------------------------------------------*/ 20 20 21 #if HAVE_CONFIG_H 22 #include "config.h" 23 #endif 21 24 22 25 #include <stdarg.h> -
c/src/exec/libcsupport/src/read.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
c/src/exec/libcsupport/src/readdir.c
rac5c8c7 r9c49db4 40 40 static char sccsid[] = "@(#)readdir.c 5.7 (Berkeley) 6/1/90"; 41 41 #endif /* LIBC_SCCS and not lint */ 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 42 46 43 47 #include <dirent.h> -
c/src/exec/libcsupport/src/readlink.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
c/src/exec/libcsupport/src/rewinddir.c
rac5c8c7 r9c49db4 10 10 * 11 11 */ 12 13 #if HAVE_CONFIG_H 14 #include "config.h" 15 #endif 12 16 13 17 #include <sys/types.h> -
c/src/exec/libcsupport/src/rmdir.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/types.h> -
c/src/exec/libcsupport/src/scandir.c
rac5c8c7 r9c49db4 40 40 static char sccsid[] = "@(#)scandir.c 5.10 (Berkeley) 2/23/91"; 41 41 #endif /* LIBC_SCCS and not lint */ 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 42 46 43 47 /* -
c/src/exec/libcsupport/src/seekdir.c
rac5c8c7 r9c49db4 10 10 * 11 11 */ 12 13 #if HAVE_CONFIG_H 14 #include "config.h" 15 #endif 12 16 13 17 #include <sys/param.h> -
c/src/exec/libcsupport/src/stat.c
rac5c8c7 r9c49db4 13 13 * $Id$ 14 14 */ 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 /* -
c/src/exec/libcsupport/src/symlink.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
c/src/exec/libcsupport/src/tcdrain.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/tcflow.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/tcflush.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/tcgetattr.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/tcgetprgrp.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/tcsendbreak.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/tcsetattr.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/tcsetpgrp.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/telldir.c
rac5c8c7 r9c49db4 10 10 * 11 11 */ 12 13 #if HAVE_CONFIG_H 14 #include "config.h" 15 #endif 12 16 13 17 #include <sys/param.h> -
c/src/exec/libcsupport/src/termios.c
rac5c8c7 r9c49db4 15 15 * $Id$ 16 16 */ 17 18 #if HAVE_CONFIG_H 19 #include "config.h" 20 #endif 17 21 18 22 #include <rtems.h> -
c/src/exec/libcsupport/src/termiosinitialize.c
rac5c8c7 r9c49db4 15 15 * $Id$ 16 16 */ 17 18 #if HAVE_CONFIG_H 19 #include "config.h" 20 #endif 17 21 18 22 #include <rtems.h> -
c/src/exec/libcsupport/src/termiosreserveresources.c
rac5c8c7 r9c49db4 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <rtems.h> -
c/src/exec/libcsupport/src/truncate.c
rac5c8c7 r9c49db4 15 15 * $Id$ 16 16 */ 17 18 #if HAVE_CONFIG_H 19 #include "config.h" 20 #endif 17 21 18 22 #include <unistd.h> -
c/src/exec/libcsupport/src/ttyname.c
rac5c8c7 r9c49db4 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <sys/types.h> -
c/src/exec/libcsupport/src/ttyname_r.c
rac5c8c7 r9c49db4 40 40 static char sccsid[] = "@(#)ttyname.c 5.10 (Berkeley) 5/6/91"; 41 41 #endif /* LIBC_SCCS and not lint */ 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 42 46 43 47 #include <sys/types.h> -
c/src/exec/libcsupport/src/umask.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/types.h> -
c/src/exec/libcsupport/src/unixlibc.c
rac5c8c7 r9c49db4 11 11 * 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/exec/libcsupport/src/unlink.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <errno.h> -
c/src/exec/libcsupport/src/unmount.c
rac5c8c7 r9c49db4 16 16 * $Id$ 17 17 */ 18 19 #if HAVE_CONFIG_H 20 #include "config.h" 21 #endif 18 22 19 23 #include <sys/types.h> -
c/src/exec/libcsupport/src/utime.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/types.h> -
c/src/exec/libcsupport/src/write.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
c/src/lib/ChangeLog
rac5c8c7 r9c49db4 1 2 2001-01-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 3 4 * configure.in: Add libc/config.h 5 * libc/Makefile.am: Add INCLUDES += -I. to pickup config.h 6 * libc/.cvsignore: Add config.h and stamp-h 7 * libc/*.c: Add config.h support. 1 8 2 9 2000-12-06 Joel Sherrill <joel@OARcorp.com> -
c/src/lib/configure.in
rac5c8c7 r9c49db4 33 33 AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes") 34 34 35 AM_CONFIG_HEADER(libc/config.h) 36 35 37 # Explicitly list all Makefiles here 36 38 AC_OUTPUT( -
c/src/lib/libc/.cvsignore
rac5c8c7 r9c49db4 1 1 Makefile 2 2 Makefile.in 3 config.h 4 config.h.in 5 stamp-h 6 stamp-h.in -
c/src/lib/libc/Makefile.am
rac5c8c7 r9c49db4 70 70 71 71 AM_CFLAGS += $(LIBC_DEFINES) 72 INCLUDES += -I. 72 73 73 74 all-local: ${ARCH} $(TMPINSTALL_FILES) -
c/src/lib/libc/__brk.c
rac5c8c7 r9c49db4 14 14 */ 15 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 19 16 20 #include <rtems.h> 17 21 #if !defined(RTEMS_UNIX) -
c/src/lib/libc/__getpid.c
rac5c8c7 r9c49db4 5 5 * $Id$ 6 6 */ 7 8 #if HAVE_CONFIG_H 9 #include "config.h" 10 #endif 7 11 8 12 #include <unistd.h> -
c/src/lib/libc/__gettod.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
c/src/lib/libc/__sbrk.c
rac5c8c7 r9c49db4 14 14 */ 15 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 19 16 20 #include <rtems.h> 17 21 #if !defined(RTEMS_UNIX) -
c/src/lib/libc/__times.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/access.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/lib/libc/assoc.c
rac5c8c7 r9c49db4 5 5 * $Id$ 6 6 */ 7 8 #if HAVE_CONFIG_H 9 #include "config.h" 10 #endif 7 11 8 12 #include <rtems.h> -
c/src/lib/libc/assocnamebad.c
rac5c8c7 r9c49db4 5 5 * $Id$ 6 6 */ 7 8 #if HAVE_CONFIG_H 9 #include "config.h" 10 #endif 7 11 8 12 #include <rtems.h> -
c/src/lib/libc/base_fs.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/cfgetispeed.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/cfgetospeed.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/cfsetispeed.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/cfsetospeed.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/chdir.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/chmod.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/chown.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/stat.h> -
c/src/lib/libc/close.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
c/src/lib/libc/closedir.c
rac5c8c7 r9c49db4 41 41 #endif /* LIBC_SCCS and not lint */ 42 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 46 43 47 #include <sys/types.h> 44 48 #include <dirent.h> … … 46 50 #include <unistd.h> 47 51 #include <errno.h> 48 49 52 50 53 #include <rtems/libio_.h> -
c/src/lib/libc/creat.c
rac5c8c7 r9c49db4 4 4 5 5 /* creat() "system call" */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 /* This is needed by f2c and therefore the SPEC benchmarks. */ -
c/src/lib/libc/ctermid.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/dup.c
rac5c8c7 r9c49db4 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 17 14 18 #include <unistd.h> 15 19 #include <fcntl.h> -
c/src/lib/libc/dup2.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/lib/libc/error.c
rac5c8c7 r9c49db4 6 6 */ 7 7 8 #if HAVE_CONFIG_H 9 #include "config.h" 10 #endif 8 11 9 12 /* -
c/src/lib/libc/eval.c
rac5c8c7 r9c49db4 13 13 * $Id$ 14 14 */ 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 #include <rtems.h> -
c/src/lib/libc/fchdir.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/lib/libc/fchmod.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/lib/libc/fcntl.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/lib/libc/fdatasync.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/lib/libc/fpathconf.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
c/src/lib/libc/fs_null_handlers.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <errno.h> -
c/src/lib/libc/fstat.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/stat.h> -
c/src/lib/libc/fsync.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/lib/libc/ftruncate.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/lib/libc/getcwd.c
rac5c8c7 r9c49db4 36 36 * $Id$ 37 37 */ 38 39 #if HAVE_CONFIG_H 40 #include "config.h" 41 #endif 38 42 39 43 /* -
c/src/lib/libc/getdents.c
rac5c8c7 r9c49db4 17 17 * $Id$ 18 18 */ 19 20 #if HAVE_CONFIG_H 21 #include "config.h" 22 #endif 19 23 20 24 #include <errno.h> -
c/src/lib/libc/getgrent.c
rac5c8c7 r9c49db4 9 9 */ 10 10 11 #if HAVE_CONFIG_H 12 #include "config.h" 13 #endif 11 14 12 15 #include <stdio.h> -
c/src/lib/libc/getpwent.c
rac5c8c7 r9c49db4 8 8 * $Id$ 9 9 */ 10 11 #if HAVE_CONFIG_H 12 #include "config.h" 13 #endif 10 14 11 15 #include <stdio.h> -
c/src/lib/libc/gxx_wrappers.c
rac5c8c7 r9c49db4 16 16 * 17 17 */ 18 19 #if HAVE_CONFIG_H 20 #include "config.h" 21 #endif 18 22 19 23 /* We might not need, defined just in case */ -
c/src/lib/libc/hosterr.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/ioctl.c
rac5c8c7 r9c49db4 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <rtems/libio_.h> -
c/src/lib/libc/isatty.c
rac5c8c7 r9c49db4 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <sys/stat.h> -
c/src/lib/libc/libio.c
rac5c8c7 r9c49db4 13 13 * $Id$ 14 14 */ 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 #include <rtems/libio_.h> /* libio_.h pulls in rtems */ -
c/src/lib/libc/libio_sockets.c
rac5c8c7 r9c49db4 12 12 * $Id$ 13 13 */ 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 14 18 15 19 #include <rtems/libio_.h> /* libio_.h pulls in rtems */ -
c/src/lib/libc/link.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/lseek.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <stdio.h> -
c/src/lib/libc/malloc.c
rac5c8c7 r9c49db4 12 12 * $Id$ 13 13 */ 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 14 18 15 19 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
c/src/lib/libc/mallocfreespace.c
rac5c8c7 r9c49db4 12 12 * $Id$ 13 13 */ 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 14 18 15 19 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
c/src/lib/libc/mkdir.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/types.h> -
c/src/lib/libc/mkfifo.c
rac5c8c7 r9c49db4 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 17 14 18 #include <sys/types.h> 15 19 #include <sys/stat.h> -
c/src/lib/libc/mknod.c
rac5c8c7 r9c49db4 15 15 * $Id$ 16 16 */ 17 18 #if HAVE_CONFIG_H 19 #include "config.h" 20 #endif 17 21 18 22 #include <sys/types.h> -
c/src/lib/libc/mount.c
rac5c8c7 r9c49db4 17 17 * $Id$ 18 18 */ 19 20 #if HAVE_CONFIG_H 21 #include "config.h" 22 #endif 19 23 20 24 #include <sys/types.h> -
c/src/lib/libc/newlibc.c
rac5c8c7 r9c49db4 13 13 * 14 14 */ 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ … … 332 336 */ 333 337 334 #include < stdio.h>338 #include <unistd.h> 335 339 336 340 #if !defined(RTEMS_UNIX) -
c/src/lib/libc/no_libc.c
rac5c8c7 r9c49db4 13 13 */ 14 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 15 18 16 19 #include <rtems.h> -
c/src/lib/libc/no_posix.c
rac5c8c7 r9c49db4 16 16 * $Id$ 17 17 */ 18 19 #if HAVE_CONFIG_H 20 #include "config.h" 21 #endif 18 22 19 23 #include <rtems.h> -
c/src/lib/libc/open.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
c/src/lib/libc/opendir.c
rac5c8c7 r9c49db4 40 40 static char sccsid[] = "@(#)opendir.c 5.11 (Berkeley) 2/23/91"; 41 41 #endif /* LIBC_SCCS and not lint */ 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 42 46 43 47 #include <dirent.h> -
c/src/lib/libc/pathconf.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
c/src/lib/libc/pipe.c
rac5c8c7 r9c49db4 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 17 14 18 #include <errno.h> 15 19 -
c/src/lib/libc/printk.c
rac5c8c7 r9c49db4 19 19 +--------------------------------------------------------------------------*/ 20 20 21 #if HAVE_CONFIG_H 22 #include "config.h" 23 #endif 21 24 22 25 #include <stdarg.h> -
c/src/lib/libc/read.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
c/src/lib/libc/readdir.c
rac5c8c7 r9c49db4 40 40 static char sccsid[] = "@(#)readdir.c 5.7 (Berkeley) 6/1/90"; 41 41 #endif /* LIBC_SCCS and not lint */ 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 42 46 43 47 #include <dirent.h> -
c/src/lib/libc/readlink.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
c/src/lib/libc/rewinddir.c
rac5c8c7 r9c49db4 10 10 * 11 11 */ 12 13 #if HAVE_CONFIG_H 14 #include "config.h" 15 #endif 12 16 13 17 #include <sys/types.h> -
c/src/lib/libc/rmdir.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/types.h> -
c/src/lib/libc/scandir.c
rac5c8c7 r9c49db4 40 40 static char sccsid[] = "@(#)scandir.c 5.10 (Berkeley) 2/23/91"; 41 41 #endif /* LIBC_SCCS and not lint */ 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 42 46 43 47 /* -
c/src/lib/libc/seekdir.c
rac5c8c7 r9c49db4 10 10 * 11 11 */ 12 13 #if HAVE_CONFIG_H 14 #include "config.h" 15 #endif 12 16 13 17 #include <sys/param.h> -
c/src/lib/libc/stat.c
rac5c8c7 r9c49db4 13 13 * $Id$ 14 14 */ 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 /* -
c/src/lib/libc/symlink.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
c/src/lib/libc/tcdrain.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/tcflow.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/tcflush.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/tcgetattr.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/tcgetprgrp.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/tcsendbreak.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/tcsetattr.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/tcsetpgrp.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/telldir.c
rac5c8c7 r9c49db4 10 10 * 11 11 */ 12 13 #if HAVE_CONFIG_H 14 #include "config.h" 15 #endif 12 16 13 17 #include <sys/param.h> -
c/src/lib/libc/termios.c
rac5c8c7 r9c49db4 15 15 * $Id$ 16 16 */ 17 18 #if HAVE_CONFIG_H 19 #include "config.h" 20 #endif 17 21 18 22 #include <rtems.h> -
c/src/lib/libc/termiosinitialize.c
rac5c8c7 r9c49db4 15 15 * $Id$ 16 16 */ 17 18 #if HAVE_CONFIG_H 19 #include "config.h" 20 #endif 17 21 18 22 #include <rtems.h> -
c/src/lib/libc/termiosreserveresources.c
rac5c8c7 r9c49db4 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <rtems.h> -
c/src/lib/libc/truncate.c
rac5c8c7 r9c49db4 15 15 * $Id$ 16 16 */ 17 18 #if HAVE_CONFIG_H 19 #include "config.h" 20 #endif 17 21 18 22 #include <unistd.h> -
c/src/lib/libc/ttyname.c
rac5c8c7 r9c49db4 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <sys/types.h> -
c/src/lib/libc/ttyname_r.c
rac5c8c7 r9c49db4 40 40 static char sccsid[] = "@(#)ttyname.c 5.10 (Berkeley) 5/6/91"; 41 41 #endif /* LIBC_SCCS and not lint */ 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 42 46 43 47 #include <sys/types.h> -
c/src/lib/libc/umask.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/types.h> -
c/src/lib/libc/unixlibc.c
rac5c8c7 r9c49db4 11 11 * 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
c/src/lib/libc/unlink.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <errno.h> -
c/src/lib/libc/unmount.c
rac5c8c7 r9c49db4 16 16 * $Id$ 17 17 */ 18 19 #if HAVE_CONFIG_H 20 #include "config.h" 21 #endif 18 22 19 23 #include <sys/types.h> -
c/src/lib/libc/utime.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/types.h> -
c/src/lib/libc/write.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
cpukit/libcsupport/src/__brk.c
rac5c8c7 r9c49db4 14 14 */ 15 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 19 16 20 #include <rtems.h> 17 21 #if !defined(RTEMS_UNIX) -
cpukit/libcsupport/src/__getpid.c
rac5c8c7 r9c49db4 5 5 * $Id$ 6 6 */ 7 8 #if HAVE_CONFIG_H 9 #include "config.h" 10 #endif 7 11 8 12 #include <unistd.h> -
cpukit/libcsupport/src/__gettod.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
cpukit/libcsupport/src/__sbrk.c
rac5c8c7 r9c49db4 14 14 */ 15 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 19 16 20 #include <rtems.h> 17 21 #if !defined(RTEMS_UNIX) -
cpukit/libcsupport/src/__times.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/access.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
cpukit/libcsupport/src/assoc.c
rac5c8c7 r9c49db4 5 5 * $Id$ 6 6 */ 7 8 #if HAVE_CONFIG_H 9 #include "config.h" 10 #endif 7 11 8 12 #include <rtems.h> -
cpukit/libcsupport/src/assocnamebad.c
rac5c8c7 r9c49db4 5 5 * $Id$ 6 6 */ 7 8 #if HAVE_CONFIG_H 9 #include "config.h" 10 #endif 7 11 8 12 #include <rtems.h> -
cpukit/libcsupport/src/base_fs.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/cfgetispeed.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/cfgetospeed.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/cfsetispeed.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/cfsetospeed.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/chdir.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/chmod.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/chown.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/stat.h> -
cpukit/libcsupport/src/close.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
cpukit/libcsupport/src/closedir.c
rac5c8c7 r9c49db4 41 41 #endif /* LIBC_SCCS and not lint */ 42 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 46 43 47 #include <sys/types.h> 44 48 #include <dirent.h> … … 46 50 #include <unistd.h> 47 51 #include <errno.h> 48 49 52 50 53 #include <rtems/libio_.h> -
cpukit/libcsupport/src/creat.c
rac5c8c7 r9c49db4 4 4 5 5 /* creat() "system call" */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 /* This is needed by f2c and therefore the SPEC benchmarks. */ -
cpukit/libcsupport/src/ctermid.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/dup.c
rac5c8c7 r9c49db4 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 17 14 18 #include <unistd.h> 15 19 #include <fcntl.h> -
cpukit/libcsupport/src/dup2.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
cpukit/libcsupport/src/error.c
rac5c8c7 r9c49db4 6 6 */ 7 7 8 #if HAVE_CONFIG_H 9 #include "config.h" 10 #endif 8 11 9 12 /* -
cpukit/libcsupport/src/eval.c
rac5c8c7 r9c49db4 13 13 * $Id$ 14 14 */ 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 #include <rtems.h> -
cpukit/libcsupport/src/fchdir.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
cpukit/libcsupport/src/fchmod.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
cpukit/libcsupport/src/fcntl.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
cpukit/libcsupport/src/fdatasync.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
cpukit/libcsupport/src/fpathconf.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
cpukit/libcsupport/src/fs_null_handlers.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <errno.h> -
cpukit/libcsupport/src/fstat.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/stat.h> -
cpukit/libcsupport/src/fsync.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
cpukit/libcsupport/src/ftruncate.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
cpukit/libcsupport/src/getcwd.c
rac5c8c7 r9c49db4 36 36 * $Id$ 37 37 */ 38 39 #if HAVE_CONFIG_H 40 #include "config.h" 41 #endif 38 42 39 43 /* -
cpukit/libcsupport/src/getdents.c
rac5c8c7 r9c49db4 17 17 * $Id$ 18 18 */ 19 20 #if HAVE_CONFIG_H 21 #include "config.h" 22 #endif 19 23 20 24 #include <errno.h> -
cpukit/libcsupport/src/getgrent.c
rac5c8c7 r9c49db4 9 9 */ 10 10 11 #if HAVE_CONFIG_H 12 #include "config.h" 13 #endif 11 14 12 15 #include <stdio.h> -
cpukit/libcsupport/src/getpwent.c
rac5c8c7 r9c49db4 8 8 * $Id$ 9 9 */ 10 11 #if HAVE_CONFIG_H 12 #include "config.h" 13 #endif 10 14 11 15 #include <stdio.h> -
cpukit/libcsupport/src/gxx_wrappers.c
rac5c8c7 r9c49db4 16 16 * 17 17 */ 18 19 #if HAVE_CONFIG_H 20 #include "config.h" 21 #endif 18 22 19 23 /* We might not need, defined just in case */ -
cpukit/libcsupport/src/hosterr.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/ioctl.c
rac5c8c7 r9c49db4 14 14 * $Id$ 15 15 */ 16 17 #if HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <rtems/libio_.h> -
cpukit/libcsupport/src/isatty.c
rac5c8c7 r9c49db4 9 9 * $Id$ 10 10 */ 11 12 #if HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <sys/stat.h> -
cpukit/libcsupport/src/libio.c
rac5c8c7 r9c49db4 13 13 * $Id$ 14 14 */ 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 #include <rtems/libio_.h> /* libio_.h pulls in rtems */ -
cpukit/libcsupport/src/libio_sockets.c
rac5c8c7 r9c49db4 12 12 * $Id$ 13 13 */ 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 14 18 15 19 #include <rtems/libio_.h> /* libio_.h pulls in rtems */ -
cpukit/libcsupport/src/link.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/lseek.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <stdio.h> -
cpukit/libcsupport/src/malloc.c
rac5c8c7 r9c49db4 12 12 * $Id$ 13 13 */ 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 14 18 15 19 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
cpukit/libcsupport/src/mallocfreespace.c
rac5c8c7 r9c49db4 12 12 * $Id$ 13 13 */ 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 14 18 15 19 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
cpukit/libcsupport/src/mkdir.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/types.h> -
cpukit/libcsupport/src/mkfifo.c
rac5c8c7 r9c49db4 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 17 14 18 #include <sys/types.h> 15 19 #include <sys/stat.h> -
cpukit/libcsupport/src/mknod.c
rac5c8c7 r9c49db4 15 15 * $Id$ 16 16 */ 17 18 #if HAVE_CONFIG_H 19 #include "config.h" 20 #endif 17 21 18 22 #include <sys/types.h> -
cpukit/libcsupport/src/mount.c
rac5c8c7 r9c49db4 17 17 * $Id$ 18 18 */ 19 20 #if HAVE_CONFIG_H 21 #include "config.h" 22 #endif 19 23 20 24 #include <sys/types.h> -
cpukit/libcsupport/src/newlibc.c
rac5c8c7 r9c49db4 13 13 * 14 14 */ 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ … … 332 336 */ 333 337 334 #include < stdio.h>338 #include <unistd.h> 335 339 336 340 #if !defined(RTEMS_UNIX) -
cpukit/libcsupport/src/no_libc.c
rac5c8c7 r9c49db4 13 13 */ 14 14 15 #if HAVE_CONFIG_H 16 #include "config.h" 17 #endif 15 18 16 19 #include <rtems.h> -
cpukit/libcsupport/src/no_posix.c
rac5c8c7 r9c49db4 16 16 * $Id$ 17 17 */ 18 19 #if HAVE_CONFIG_H 20 #include "config.h" 21 #endif 18 22 19 23 #include <rtems.h> -
cpukit/libcsupport/src/open.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
cpukit/libcsupport/src/opendir.c
rac5c8c7 r9c49db4 40 40 static char sccsid[] = "@(#)opendir.c 5.11 (Berkeley) 2/23/91"; 41 41 #endif /* LIBC_SCCS and not lint */ 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 42 46 43 47 #include <dirent.h> -
cpukit/libcsupport/src/pathconf.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <unistd.h> -
cpukit/libcsupport/src/pipe.c
rac5c8c7 r9c49db4 12 12 */ 13 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 17 14 18 #include <errno.h> 15 19 -
cpukit/libcsupport/src/printk.c
rac5c8c7 r9c49db4 19 19 +--------------------------------------------------------------------------*/ 20 20 21 #if HAVE_CONFIG_H 22 #include "config.h" 23 #endif 21 24 22 25 #include <stdarg.h> -
cpukit/libcsupport/src/read.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
cpukit/libcsupport/src/readdir.c
rac5c8c7 r9c49db4 40 40 static char sccsid[] = "@(#)readdir.c 5.7 (Berkeley) 6/1/90"; 41 41 #endif /* LIBC_SCCS and not lint */ 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 42 46 43 47 #include <dirent.h> -
cpukit/libcsupport/src/readlink.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
cpukit/libcsupport/src/rewinddir.c
rac5c8c7 r9c49db4 10 10 * 11 11 */ 12 13 #if HAVE_CONFIG_H 14 #include "config.h" 15 #endif 12 16 13 17 #include <sys/types.h> -
cpukit/libcsupport/src/rmdir.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/types.h> -
cpukit/libcsupport/src/scandir.c
rac5c8c7 r9c49db4 40 40 static char sccsid[] = "@(#)scandir.c 5.10 (Berkeley) 2/23/91"; 41 41 #endif /* LIBC_SCCS and not lint */ 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 42 46 43 47 /* -
cpukit/libcsupport/src/seekdir.c
rac5c8c7 r9c49db4 10 10 * 11 11 */ 12 13 #if HAVE_CONFIG_H 14 #include "config.h" 15 #endif 12 16 13 17 #include <sys/param.h> -
cpukit/libcsupport/src/stat.c
rac5c8c7 r9c49db4 13 13 * $Id$ 14 14 */ 15 16 #if HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 /* -
cpukit/libcsupport/src/symlink.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h> -
cpukit/libcsupport/src/tcdrain.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/tcflow.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/tcflush.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/tcgetattr.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/tcgetprgrp.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/tcsendbreak.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/tcsetattr.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/tcsetpgrp.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/telldir.c
rac5c8c7 r9c49db4 10 10 * 11 11 */ 12 13 #if HAVE_CONFIG_H 14 #include "config.h" 15 #endif 12 16 13 17 #include <sys/param.h> -
cpukit/libcsupport/src/termios.c
rac5c8c7 r9c49db4 15 15 * $Id$ 16 16 */ 17 18 #if HAVE_CONFIG_H 19 #include "config.h" 20 #endif 17 21 18 22 #include <rtems.h> -
cpukit/libcsupport/src/termiosinitialize.c
rac5c8c7 r9c49db4 15 15 * $Id$ 16 16 */ 17 18 #if HAVE_CONFIG_H 19 #include "config.h" 20 #endif 17 21 18 22 #include <rtems.h> -
cpukit/libcsupport/src/termiosreserveresources.c
rac5c8c7 r9c49db4 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <rtems.h> -
cpukit/libcsupport/src/truncate.c
rac5c8c7 r9c49db4 15 15 * $Id$ 16 16 */ 17 18 #if HAVE_CONFIG_H 19 #include "config.h" 20 #endif 17 21 18 22 #include <unistd.h> -
cpukit/libcsupport/src/ttyname.c
rac5c8c7 r9c49db4 4 4 * $Id$ 5 5 */ 6 7 #if HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <sys/types.h> -
cpukit/libcsupport/src/ttyname_r.c
rac5c8c7 r9c49db4 40 40 static char sccsid[] = "@(#)ttyname.c 5.10 (Berkeley) 5/6/91"; 41 41 #endif /* LIBC_SCCS and not lint */ 42 43 #if HAVE_CONFIG_H 44 #include "config.h" 45 #endif 42 46 43 47 #include <sys/types.h> -
cpukit/libcsupport/src/umask.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/types.h> -
cpukit/libcsupport/src/unixlibc.c
rac5c8c7 r9c49db4 11 11 * 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems.h> -
cpukit/libcsupport/src/unlink.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <errno.h> -
cpukit/libcsupport/src/unmount.c
rac5c8c7 r9c49db4 16 16 * $Id$ 17 17 */ 18 19 #if HAVE_CONFIG_H 20 #include "config.h" 21 #endif 18 22 19 23 #include <sys/types.h> -
cpukit/libcsupport/src/utime.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <sys/types.h> -
cpukit/libcsupport/src/write.c
rac5c8c7 r9c49db4 11 11 * $Id$ 12 12 */ 13 14 #if HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <rtems/libio_.h>
Note: See TracChangeset
for help on using the changeset viewer.