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