blob: eaaa9839dca67ade4e71b37da720a2e64527976b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#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>
|