1234567891011121314151617181920 |
- #ifndef _SYS_REDOX_H
- #define _SYS_REDOX_H
- #include <sys/types.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef __redox__
- ssize_t redox_fpath(int fd, void * buf, size_t count);
- #endif
- #ifdef __cplusplus
- } // extern "C"
- #endif
- #endif
|