Changeset 267
- Timestamp:
- Mar 19, 2004, 9:20:02 AM (22 years ago)
- Location:
- trunk/archive/pslib/src/Utils
- Files:
-
- 13 edited
-
array.c (modified) (1 diff)
-
dlist.c (modified) (1 diff)
-
hash.c (modified) (1 diff)
-
logmsg.c (modified) (1 diff)
-
memory.c (modified) (1 diff)
-
misc.c (modified) (1 diff)
-
trace.c (modified) (1 diff)
-
tst_array.c (modified) (1 diff)
-
tst_dlist.c (modified) (1 diff)
-
tst_hash.c (modified) (1 diff)
-
tst_logmsg.c (modified) (1 diff)
-
tst_memory.c (modified) (1 diff)
-
tst_trace.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/src/Utils/array.c
r265 r267 4 4 * able to free each element properly 5 5 */ 6 #include "ps Utils.h"6 #include "psLib.h" 7 7 8 8 typedef void *psVoidPtr; -
trunk/archive/pslib/src/Utils/dlist.c
r265 r267 5 5 #include <stdio.h> 6 6 #include <assert.h> 7 #include "ps Utils.h"7 #include "psLib.h" 8 8 9 9 static psDlistElem *dlistElemAlloc(void) -
trunk/archive/pslib/src/Utils/hash.c
r265 r267 7 7 #include <stdio.h> 8 8 #include <string.h> 9 #include "ps Utils.h"9 #include "psLib.h" 10 10 11 11 /*****************************************************************************/ -
trunk/archive/pslib/src/Utils/logmsg.c
r265 r267 9 9 #include <time.h> 10 10 #include <unistd.h> 11 #include "ps Utils.h"11 #include "psLib.h" 12 12 13 13 /*****************************************************************************/ -
trunk/archive/pslib/src/Utils/memory.c
r264 r267 3 3 #include <assert.h> 4 4 #define PS_ALLOW_MALLOC // we're allowed to call malloc() 5 #include "ps Utils.h"5 #include "psLib.h" 6 6 #include "Private/p_psMemory.h" 7 7 -
trunk/archive/pslib/src/Utils/misc.c
r141 r267 5 5 #include <stdarg.h> 6 6 #include <string.h> 7 #include "ps Utils.h"7 #include "psLib.h" 8 8 9 9 /*****************************************************************************/ -
trunk/archive/pslib/src/Utils/trace.c
r262 r267 11 11 #include <string.h> 12 12 #include <stdarg.h> 13 #include "ps Utils.h"13 #include "psLib.h" 14 14 15 15 /*****************************************************************************/ -
trunk/archive/pslib/src/Utils/tst_array.c
r258 r267 1 #include "ps Utils.h"1 #include "psLib.h" 2 2 3 3 typedef struct { -
trunk/archive/pslib/src/Utils/tst_dlist.c
r258 r267 1 1 //#include <stdlib.h> 2 2 #include <stdio.h> 3 #include "ps Utils.h"3 #include "psLib.h" 4 4 5 5 -
trunk/archive/pslib/src/Utils/tst_hash.c
r258 r267 5 5 */ 6 6 #include <stdio.h> 7 #include "ps Utils.h"7 #include "psLib.h" 8 8 9 9 typedef struct { char *name; } ID; -
trunk/archive/pslib/src/Utils/tst_logmsg.c
r258 r267 1 1 #include <stdio.h> 2 #include "ps Utils.h"2 #include "psLib.h" 3 3 4 4 int main(void) -
trunk/archive/pslib/src/Utils/tst_memory.c
r258 r267 3 3 #include <stdio.h> 4 4 #include <assert.h> 5 #include "ps Utils.h"5 #include "psLib.h" 6 6 7 7 /*****************************************************************************/ -
trunk/archive/pslib/src/Utils/tst_trace.c
r263 r267 4 4 #include <stdarg.h> 5 5 #include <assert.h> 6 #include "ps Utils.h"6 #include "psLib.h" 7 7 8 8 static int my_MemAllocateCB(const psMemBlock *ptr)
Note:
See TracChangeset
for help on using the changeset viewer.
