diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-11-29 00:04:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-11-29 00:04:54 +0000 |
commit | 20bb288327254c60dcf7f28ad3ea22c48cffcc58 (patch) | |
tree | 9d317f8044d64112c5112ef088688f366864726e /dlfcn/eval.c | |
parent | 5eefad82e96d213f69e216857ad638dab981f705 (diff) | |
download | glibc-20bb288327254c60dcf7f28ad3ea22c48cffcc58.tar.gz glibc-20bb288327254c60dcf7f28ad3ea22c48cffcc58.tar.xz glibc-20bb288327254c60dcf7f28ad3ea22c48cffcc58.zip |
Update.
* dlfcn/defaultmod1.c: Add prototypes to avoid warnings. * dlfcn/defaultmod2.c: Likewise. * dlfcn/dlopen.c: Likewise. * dlfcn/dlopenold.c: Likewise. * dlfcn/failtestmod.c: Likewise. * dlfcn/glreflib1.c: Likewise. * dlfcn/glreflib2.c: Likewise. * dlfcn/eval.c: Likewise. Add attributes. * ctype/ctype-extn.c: Define isblank and not __isblank.
Diffstat (limited to 'dlfcn/eval.c')
-rw-r--r-- | dlfcn/eval.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dlfcn/eval.c b/dlfcn/eval.c index ce452b722c..1f9421ddda 100644 --- a/dlfcn/eval.c +++ b/dlfcn/eval.c @@ -1,5 +1,5 @@ /* You don't really want to know what this hack is for. - Copyright (C) 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -122,7 +122,9 @@ eval (char **stringp) } +extern void _start (void) __attribute__ ((noreturn)); void +__attribute__ ((noreturn)) _start (void) { char *buf = NULL; |