diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2000-08-30 18:34:53 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2000-08-30 18:34:53 +0000 |
commit | db7acc382fd5b2c5e58c0413028a367574e5c8b8 (patch) | |
tree | d5a197996e9d8abc1ba2d78f473aa7e9ae17e2db /newlib/libc/sys/sysvi386 | |
parent | a8382fa44c26584947f61193caf9c40d85779622 (diff) | |
download | cygnal-db7acc382fd5b2c5e58c0413028a367574e5c8b8.tar.gz cygnal-db7acc382fd5b2c5e58c0413028a367574e5c8b8.tar.bz2 cygnal-db7acc382fd5b2c5e58c0413028a367574e5c8b8.zip |
2000-08-30 Werner Almesberger <Werner.Almesberger@epfl.ch>
* libc/posix/execve.c: included unistd.h for "_execve" prototype.
* libc/misc/unctrl.c libc/sys/sysvi386/crt0.c (sccsid): changed
"#ifndef lint" to "#if defined(LIBC_SCCS) && !defined(lint)" like
everywhere else.
Diffstat (limited to 'newlib/libc/sys/sysvi386')
-rw-r--r-- | newlib/libc/sys/sysvi386/crt0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/sys/sysvi386/crt0.c b/newlib/libc/sys/sysvi386/crt0.c index 7949b3d4c..b41c00a3c 100644 --- a/newlib/libc/sys/sysvi386/crt0.c +++ b/newlib/libc/sys/sysvi386/crt0.c @@ -31,9 +31,9 @@ * SUCH DAMAGE. */ -#ifndef lint +#if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)crt0.c 5.7 (Berkeley) 7/3/91"; -#endif /* not lint */ +#endif /* LIBC_SCCS and not lint */ /* * C start up routine. |