| OLD | NEW |
| 1 /* Copied from Linux version and changed the features according the PNaCl | 1 /* Copied from Linux version and changed the features according the PNaCl |
| 2 * toolchain for the Non-SFI binary build, which is close to one under the | 2 * toolchain for the Non-SFI binary build, which is close to one under the |
| 3 * linux/ directory. The built binary will be running under Linux directly, | 3 * linux/ directory. The built binary will be running under Linux directly, |
| 4 * actually. | 4 * actually. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #ifndef _EVENT_CONFIG_H_ | 7 #ifndef _EVENT_CONFIG_H_ |
| 8 #define _EVENT_CONFIG_H_ | 8 #define _EVENT_CONFIG_H_ |
| 9 | 9 |
| 10 /* Define if clock_gettime is available in libc */ | 10 /* Define if clock_gettime is available in libc */ |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 /* Define to unsigned int if you dont have it */ | 281 /* Define to unsigned int if you dont have it */ |
| 282 /* #undef _EVENT_socklen_t */ | 282 /* #undef _EVENT_socklen_t */ |
| 283 | 283 |
| 284 /* Work around for __native_client_nonsfi__ build. random() is not provided | 284 /* Work around for __native_client_nonsfi__ build. random() is not provided |
| 285 * by the newlib-based PNaCl toolchain, so here we declare it. Please see also | 285 * by the newlib-based PNaCl toolchain, so here we declare it. Please see also |
| 286 * nacl_nonsfi/random.c for more details. | 286 * nacl_nonsfi/random.c for more details. |
| 287 */ | 287 */ |
| 288 long int random(); | 288 long int random(); |
| 289 | 289 |
| 290 #endif | 290 #endif |
| OLD | NEW |