forked from bminor/glibc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* signal/sigsetops.c: Make sure __USE_EXTERN_INLINES is defined.
- Loading branch information
Ulrich Drepper
committed
Oct 8, 1998
1 parent
9ea350a
commit 16e866f
Showing
2 changed files
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
/* 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" |