From 0d4345a9bf2623df079c50a3bc73cbb7deca1176 Mon Sep 17 00:00:00 2001 From: "John Wilbert M. Villamor" Date: Wed, 17 Jul 2019 11:30:07 +0800 Subject: Added C++ support, updated build instructions and makefiles, consolidated libc and libgcc (during build process), libraries now v0.12b and more --- libpsn00b/include/ioctl.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 libpsn00b/include/ioctl.h (limited to 'libpsn00b/include/ioctl.h') diff --git a/libpsn00b/include/ioctl.h b/libpsn00b/include/ioctl.h new file mode 100644 index 0000000..5c56422 --- /dev/null +++ b/libpsn00b/include/ioctl.h @@ -0,0 +1,19 @@ +#ifndef _IOCTL_H +#define _IOCTL_H + +#ifndef NULL +#define NULL 0 +#endif + +#ifndef EOF +#define EOF -1 +#endif + +// General +#define FIONBLOCK (('f'<<8)|1) +#define FIOCSCAN (('f'<<8)|2) + +// disk +#define DIO_FORMAT (('d'<<8)|1) + +#endif \ No newline at end of file -- cgit v1.2.3