mirror of
https://git.wuffs.org/MWCC
synced 2025-12-13 15:16:24 +00:00
add tons of stuff
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
#include "oslib.h"
|
||||
|
||||
#define OPTION_ASSERT(cond) do { if (!(cond)) { printf("%s:%u: failed assertion\n", __FILE__, __LINE__); abort(); } } while(0)
|
||||
|
||||
static OSFileTypeMappings *defaultList;
|
||||
static OSFileTypeMappings **fmList = &defaultList;
|
||||
int (*__OS_ExtendedGetMacFileTypeHook)(const OSSpec *, OSType *);
|
||||
|
||||
@@ -3,8 +3,6 @@
|
||||
|
||||
extern char STSbuf[256];
|
||||
|
||||
#define OPTION_ASSERT(cond) do { if (!(cond)) { printf("%s:%u: failed assertion\n", __FILE__, __LINE__); abort(); } } while(0)
|
||||
|
||||
typedef struct DirNode {
|
||||
char *name;
|
||||
unsigned int dirID;
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
#include "oslib.h"
|
||||
#include "macemul.h"
|
||||
|
||||
#define OPTION_ASSERT(cond) do { if (!(cond)) { printf("%s:%u: failed assertion\n", __FILE__, __LINE__); abort(); } } while(0)
|
||||
|
||||
static char pfbuf[256];
|
||||
|
||||
StringPtr _pstrcpy(StringPtr dst, ConstStringPtr src) {
|
||||
|
||||
Reference in New Issue
Block a user