stub.h 265 B

123456789101112131415
  1. /* See LICENSE of license details. */
  2. #ifndef _NUCLEI_SYS_STUB_H
  3. #define _NUCLEI_SYS_STUB_H
  4. #include <stdint.h>
  5. #include <unistd.h>
  6. void write_hex(int fd, unsigned long int hex);
  7. static inline int _stub(int err)
  8. {
  9. return -1;
  10. }
  11. #endif /* _NUCLEI_SYS_STUB_H */