redox.h 239 B

1234567891011121314151617181920
  1. #ifndef _SYS_REDOX_H
  2. #define _SYS_REDOX_H
  3. #include <sys/types.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #ifdef __redox__
  8. ssize_t redox_fpath(int fd, void * buf, size_t count);
  9. #endif
  10. #ifdef __cplusplus
  11. } // extern "C"
  12. #endif
  13. #endif