]> git.pond.sub.org Git - empserver/blobdiff - src/client/bit.h
Indented with src/scripts/indent-emp.
[empserver] / src / client / bit.h
index 669e4dcffc9181f00b612b662602f9cf1405bd21..a4c724db613381163e413a316a6527f7f3d5c1e5 100644 (file)
@@ -34,8 +34,8 @@
 #ifndef _BIT_H_
 #define _BIT_H_
 
-typedef unsigned int   bit_mask;
-typedef bit_mask       *bit_fdmask;
+typedef unsigned int bit_mask;
+typedef bit_mask *bit_fdmask;
 
 #ifndef bit
 #define        bit(x)          (1 << (x))
@@ -56,6 +56,6 @@ typedef bit_mask      *bit_fdmask;
 #define BIT_ISCLRB(a,b)        \
        (((b)[(a)/BIT_BITSPERMASK] & (1<<((a) % BIT_BITSPERMASK))) == 0)
 
-extern bit_fdmask      bit_newfdmask();
+extern bit_fdmask bit_newfdmask();
 
 #endif