aboutsummaryrefslogtreecommitdiffstats
path: root/code/tools/lcc/include/alpha/osf/stddef.h
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-11-02 16:05:14 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-11-02 16:05:14 +0000
commit2e5b78c0a36480e3735692cd2795dee291936fe8 (patch)
tree0dad62aefa78bb418723d298e6d4181e2bb61a37 /code/tools/lcc/include/alpha/osf/stddef.h
parent74f0ff6259b3cfa4862ea45a9e70db5acf3ab347 (diff)
downloadioquake3-aero-2e5b78c0a36480e3735692cd2795dee291936fe8.tar.gz
ioquake3-aero-2e5b78c0a36480e3735692cd2795dee291936fe8.zip
* Removed the last of the binary target stuff from lcc (hopefully)
git-svn-id: svn://svn.icculus.org/quake3/trunk@228 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/tools/lcc/include/alpha/osf/stddef.h')
-rw-r--r--code/tools/lcc/include/alpha/osf/stddef.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/code/tools/lcc/include/alpha/osf/stddef.h b/code/tools/lcc/include/alpha/osf/stddef.h
deleted file mode 100644
index 4e87e1c..0000000
--- a/code/tools/lcc/include/alpha/osf/stddef.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef __STDDEF
-#define __STDDEF
-
-
-#define NULL 0
-#define offsetof(ty,mem) ((size_t)((char*)&((ty*)0)->mem - (char*)0))
-
-typedef long ptrdiff_t;
-
-#if !defined(_SIZE_T) && !defined(_SIZE_T_)
-#define _SIZE_T
-#define _SIZE_T_
-typedef unsigned long size_t;
-#endif
-
-#if !defined(_WCHAR_T) && !defined(_WCHAR_T_)
-#define _WCHAR_T
-#define _WCHAR_T_
-typedef unsigned short wchar_t;
-#endif
-
-#endif /* __STDDEF */