mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-27 03:20:22 +08:00
15 lines
191 B
C
15 lines
191 B
C
/* Generic signal.h */
|
|
|
|
#ifndef _AC_SIGNAL_H
|
|
#define _AC_SIGNAL_H
|
|
|
|
#include <signal.h>
|
|
|
|
#ifdef HAVE_SIGSET
|
|
#define SIGNAL sigset
|
|
#else
|
|
#define SIGNAL signal
|
|
#endif
|
|
|
|
#endif /* _AC_SIGNAL_H */
|