Home
last modified time | relevance | path

Searched refs:SM_IO_BINARY (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/sendmail/include/sm/
H A Dio.h36 # define SM_IO_BINARY 0x0 /* binary mode: not used in Unix */ macro
37 #define SM_IS_BINARY(mode) (((mode) & SM_IO_BINARY) != 0)
40 #define SM_IO_RDWR_B (SM_IO_RDWR|SM_IO_BINARY)
41 #define SM_IO_RDONLY_B (SM_IO_RDONLY|SM_IO_BINARY)
42 #define SM_IO_WRONLY_B (SM_IO_WRONLY|SM_IO_BINARY)
43 #define SM_IO_APPEND_B (SM_IO_APPEND|SM_IO_BINARY)
44 #define SM_IO_APPENDRW_B (SM_IO_APPENDRW|SM_IO_BINARY)
45 #define SM_IO_RDWRTR_B (SM_IO_RDWRTR|SM_IO_BINARY)
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dflags.c62 ret |= SM_IO_BINARY;
H A Dsmstdio.c73 #if SM_IO_BINARY != 0