mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
16e866fa93
* signal/sigsetops.c: Make sure __USE_EXTERN_INLINES is defined.
12 lines
244 B
C
12 lines
244 B
C
/* Define the real-function versions of all inline functions
|
|
defined in signal.h (or bits/sigset.h). */
|
|
|
|
#include <features.h>
|
|
|
|
#define _EXTERN_INLINE
|
|
#ifndef __USE_EXTERN_INLINES
|
|
# define __USE_EXTERN_INLINES 1
|
|
#endif
|
|
|
|
#include "signal.h"
|