Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
5c6b6fcc
Commit
5c6b6fcc
authored
Feb 05, 2000
by
Niels Möller
Browse files
* src/lsh_types.h (STRSIGNAL): Use _sys_siglist on SGI.
Rev: src/lsh_types.h:1.37
parent
85dfc66f
Changes
1
Show whitespace changes
Inline
Side-by-side
src/lsh_types.h
View file @
5c6b6fcc
...
...
@@ -95,10 +95,14 @@ char *alloca ();
#endif
#if HAVE_STRSIGNAL
#define STRSIGNAL strsignal
#else
#define STRSIGNAL(x) (sys_siglist[x])
#endif
# define STRSIGNAL strsignal
#else
/* !HAVE_STRSIGNAL */
# ifdef _sgi
# define STRSIGNAL(x) (_sys_siglist[x])
# else
/* !_sgi */
# define STRSIGNAL(x) (sys_siglist[x])
# endif
/* !_sgi */
#endif
/* !HAVE_STRSIGNAL */
/* Some macros */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment