socket.h 272 B

123456789101112
  1. #ifndef _ASM_SOCKET_H
  2. #define _ASM_SOCKET_H
  3. #include <uapi/asm/socket.h>
  4. /* O_NONBLOCK clashes with the bits used for socket types. Therefore we
  5. * have to define SOCK_NONBLOCK to a different value here.
  6. */
  7. #define SOCK_NONBLOCK 0x40000000
  8. #endif /* _ASM_SOCKET_H */