Skip to content
Snippets Groups Projects
Commit 70238519 authored by John Hodge's avatar John Hodge
Browse files

Usermode/POSIX - Hacking in stubs to build irssi/glib

parent 5f848045
Branches
No related merge requests found
......@@ -37,8 +37,9 @@ enum libc_eErrorNumbers {
// psockets
EAFNOSUPPORT,
EADDRINUSE, // Specified addres is already in use
EADDRINUSE, // (POSIX.1) Specified addres is already in use
ETIMEDOUT,
EOPNOTSUPP, // (POSIX.1) Operation not supported on socket
EINTERNAL // Internal Error
};
......
/*
* Acess2 POSIX Emulation Library
* - By John Hodge (thePowersGang)
*
* glob.h
* - Globbing code
*/
#ifndef _LIBPOSIX__GLOB_H_
#define _LIBPOSIX__GLOB_H_
#endif
......@@ -30,6 +30,11 @@ enum {
REG_BADRPT,
};
#define REG_EXTENDED 0x1
#define REG_ICASE 0x2
#define REG_NOSUB 0x4
#define REG_NEWLINE 0x8
#endif
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment