Changeset 1761 for trunk/psLib/src/collections
- Timestamp:
- Sep 9, 2004, 11:59:03 AM (22 years ago)
- Location:
- trunk/psLib/src/collections
- Files:
-
- 2 edited
-
Makefile (modified) (3 diffs)
-
psVector.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/Makefile
r1420 r1761 3 3 ## Makefile: collections 4 4 ## 5 ## $Revision: 1.2 8$ $Name: not supported by cvs2svn $6 ## $Date: 2004-0 8-09 20:29:43 $5 ## $Revision: 1.29 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-09-09 21:59:03 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 40 40 OBJS = $(addprefix makedir/,$(SRC_OBJS)) 41 41 42 HEADERS = $(SRC_OBJS:.o=.h) 43 44 42 45 # Define PHONY target "all" which will make all the necessary items 43 46 … … 54 57 55 58 install: $(TARGET_STATIC) 56 install *.h $(includedir) 59 install $(HEADERS) $(includedir) 60 61 psCollectionsErrors.h: psCollectionsErrors.dat 62 perl ../parseErrorCodes.pl --data=$? $@ 57 63 58 64 # Define PHONY target "distclean" which will cleanup the distribution -
trunk/psLib/src/collections/psVector.c
r1440 r1761 8 8 * 9 9 * @author Ross Harman, MHPCC 10 * 11 * @version $Revision: 1.22 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-08-09 23:34:57 $ 10 * @author Robert DeSonia, MHPCC 11 * 12 * @version $Revision: 1.23 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-09-09 21:59:03 $ 13 14 * 14 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii 15 16 */ 16 17 17 /******************************************************************************/18 19 /* INCLUDE FILES */20 21 /******************************************************************************/22 18 #include <string.h> // for memcpy 23 19 #include <stdlib.h> … … 29 25 #include "psLogMsg.h" 30 26 #include "psCompare.h" 31 32 /******************************************************************************/ 33 34 /* DEFINE STATEMENTS */ 35 36 /******************************************************************************/ 37 38 // None 39 40 /******************************************************************************/ 41 42 /* TYPE DEFINITIONS */ 43 44 /******************************************************************************/ 45 46 // None 47 48 /*****************************************************************************/ 49 50 /* GLOBAL VARIABLES */ 51 52 /*****************************************************************************/ 53 54 // None 55 56 /*****************************************************************************/ 57 58 /* FILE STATIC VARIABLES */ 59 60 /*****************************************************************************/ 61 62 // None 63 64 /*****************************************************************************/ 65 66 /* FUNCTION IMPLEMENTATION - LOCAL */ 67 68 /*****************************************************************************/ 27 #include "psCollectionsErrors.h" 28 69 29 static void vectorFree(psVector* restrict psVec); 70 30 71 /*****************************************************************************/ 72 73 /* FUNCTION IMPLEMENTATION - PUBLIC */ 74 75 /*****************************************************************************/ 31 // FUNCTION IMPLEMENTATION - PUBLIC 32 76 33 psVector* psVectorAlloc(unsigned int nalloc, psElemType elemType) 77 34 {
Note:
See TracChangeset
for help on using the changeset viewer.
