Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
b031d1c1
Commit
b031d1c1
authored
Aug 14, 1998
by
Kurt Zeilenga
Browse files
add generic header
parent
97a795ad
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/ac/alloca.h
0 → 100644
View file @
b031d1c1
/* Generic alloca.h */
#ifndef _AC_ALLOCA_H
#define _AC_ALLOCA_H
/* AIX requires this to be the first thing in the file. */
#ifdef __GNUC__
# define alloca __builtin_alloca
#else
# if HAVE_ALLOCA_H
# include <alloca.h>
# else
# ifdef _AIX
#pragma alloca
# else
# ifndef alloca
/* predefined by HP cc +Olibcalls */
char
*
alloca
();
# endif
# endif
# endif
#endif
#endif
/* _AC_ALLOCA_H */
include/ac/wait.h
0 → 100644
View file @
b031d1c1
/* Generic wait.h */
#ifndef _AC_WAIT_H
#define _AC_WAIT_H
#include
<sys/types.h>
#if HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif
#ifndef WEXITSTATUS
# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
#endif
#ifndef WIFEXITED
# define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
#endif
#endif
/* _AC_WAIT_H */
Write
Preview
Supports
Markdown
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