From 6c9647c1866b49d61ea3ce7d9201450fa0497b52 Mon Sep 17 00:00:00 2001 From: Fritz Elfert Date: Thu, 1 Feb 2001 02:03:25 +0000 Subject: More cleanup: - Removed bool.h and references to it everywhere. This is checked now in ./configure and the stuff went into acconfig.h - Replaced ugly bufferStore-based method of returning directory entries from rfsv::readdir() by a cleaner way. (A new, separate class PlpDirent is returned now.) With the old implementation, the caller has to know about the layout of the entries. Also, the old implementation was not 64bit aware. - Similar replacement done for rfsv::dir(). This now returns the entries in a standard STL container (deque) instead of a bufferArray. - Started renaming #include statements for standard library headers from the old form to the new recommended form. --- lib/bool.h | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 lib/bool.h (limited to 'lib/bool.h') diff --git a/lib/bool.h b/lib/bool.h deleted file mode 100644 index 7525d6c..0000000 --- a/lib/bool.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef _bool_h_ -#define _bool_h_ - -#ifndef __GNUC__ - -#ifndef bool -#define bool int -#endif - -#ifndef true -#define true 1 -#endif - -#ifndef false -#define false 0 -#endif - -#endif - -#endif -- cgit v1.2.3