You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
266 B
17 lines
266 B
3 years ago
|
/* See LICENSE of license details. */
|
||
|
#ifndef _NUCLEI_SYS_STUB_H
|
||
|
#define _NUCLEI_SYS_STUB_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
void write_hex(int fd, unsigned long int hex);
|
||
|
|
||
|
static inline int _stub(int err)
|
||
|
{
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif /* _NUCLEI_SYS_STUB_H */
|