summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-10-09 16:53:30 +0000
committerAlexander Barton <alex@barton.de>2002-10-09 16:53:30 +0000
commit84022a12fda3fac0fa72ec889fd36284d37c4cf9 (patch)
treeb9b06b15ec24258489d4974e8d58c5aba0952524 /src
parentc7b55aa6f45b75b52fb67419b7ca5af3940016a4 (diff)
downloadngircd-84022a12fda3fac0fa72ec889fd36284d37c4cf9.tar.gz
ngircd-84022a12fda3fac0fa72ec889fd36284d37c4cf9.zip
- neue Datentypen LONG, ULONG und DOUBLE.
Diffstat (limited to 'src')
-rw-r--r--src/portab/portab.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/portab/portab.h b/src/portab/portab.h
index 63f0cacc..24cefc51 100644
--- a/src/portab/portab.h
+++ b/src/portab/portab.h
@@ -9,7 +9,7 @@
  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
  * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
  *
- * $Id: portab.h,v 1.7 2002/06/26 15:43:38 alex Exp $
+ * $Id: portab.h,v 1.8 2002/10/09 16:53:30 alex Exp $
  *
  * portab.h: "Portabilitaets-Definitionen"
  */
@@ -56,6 +56,9 @@ typedef void POINTER;
 
 typedef signed int INT;
 typedef unsigned int UINT;
+typedef signed long LONG;
+typedef unsigned long ULONG;
+
 typedef signed char INT8;
 typedef unsigned char UINT8;
 typedef signed short INT16;
@@ -63,6 +66,7 @@ typedef unsigned short UINT16;
 typedef signed long INT32;
 typedef unsigned long UINT32;
 
+typedef double DOUBLE;
 typedef float FLOAT;
 
 typedef char CHAR;