net, pposix, signal: Check for redefined defines, fix warnings.

This commit is contained in:
Emmanuel Gil Peyrot 2018-08-08 09:27:34 +02:00
parent 10fe4432f4
commit 9d9392a941
3 changed files with 11 additions and 0 deletions

View file

@ -9,7 +9,10 @@
--
*/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <stddef.h>
#include <string.h>
#include <errno.h>

View file

@ -17,11 +17,17 @@
#if defined(__linux__)
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#else
#ifndef _DEFAULT_SOURCE
#define _DEFAULT_SOURCE
#endif
#endif
#ifndef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 200809L
#endif
#include <stdlib.h>
#include <math.h>

View file

@ -26,7 +26,9 @@
* OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <signal.h>
#include <stdlib.h>