mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-04 02:40:06 +00:00
11 lines
181 B
C
11 lines
181 B
C
|
#include "kernel-features.h"
|
||
|
|
||
|
#if __ASSUME_MSG_NOSIGNAL
|
||
|
# define NO_SIGPIPE
|
||
|
# define send_flags MSG_NOSIGNAL
|
||
|
#else
|
||
|
# define send_flags 0
|
||
|
#endif
|
||
|
|
||
|
#include <sysdeps/generic/syslog.c>
|