diff options
author | CDT 1999 Shawn T. Amundson <amundson@gtk.org> | 1999-05-08 07:40:44 +0000 |
---|---|---|
committer | Shawn Amundson <amundson@src.gnome.org> | 1999-05-08 07:40:44 +0000 |
commit | 499c9786d1316bc72c539d55786bb3a65d95a83a (patch) | |
tree | 9af442bcdb994b2d8f4ae926d0ed0eb1edfdf02a /gstrfuncs.c | |
parent | 2b688f549c8a2719544b33859cdc5ef99355cf37 (diff) |
Port to BeOS by myself and Richard Offer.
Sat May 8 01:52:29 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
* configure.in
gerror.c
gmain.c
gstrfuncs.c
gutils.c
ltconfig
ltmain.sh
gmodule/Makefile.am
gmodule/gmodule.c
gmodule/gmoduleconf.h.in
gmodule/gmodule-beos.c
gthread/Makefile.am: Port to BeOS by myself and Richard Offer.
Diffstat (limited to 'gstrfuncs.c')
-rw-r--r-- | gstrfuncs.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gstrfuncs.c b/gstrfuncs.c index f24fdcb20..d490dffd1 100644 --- a/gstrfuncs.c +++ b/gstrfuncs.c @@ -669,7 +669,12 @@ g_strsignal (gint signum) char *msg; #ifdef HAVE_STRSIGNAL +#ifdef GLIB_NATIVE_BEOS +extern const char * strsignal(int); +#else /* !GLIB_NATIVE_BEOS */ + /* this is declared differently (const) in string.h on BeOS */ extern char *strsignal (int sig); +#endif return strsignal (signum); #elif NO_SYS_SIGLIST switch (signum) |