- Timestamp:
- 03/05/07 21:31:51 (2 years ago)
- Files:
-
- myriad/src/myriad/CMakeLists.txt (modified) (1 diff)
- myriad/src/myriad/pool/halloc.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
myriad/src/myriad/CMakeLists.txt
r118 r123 15 15 ) 16 16 17 install(TARGETS myriad 18 LIBRARY DESTINATION lib 19 ARCHIVE DESTINATION lib) 20 21 install(FILES 22 config.h defend.h io.h myriad.h sbuf.h 23 server.h sglib.h 24 DESTINATION include/myriad ) 25 26 install(FILES 27 bstring/bstraux.h 28 bstring/bstrlib.h 29 DESTINATION include/myriad/bstring ) 30 31 install(FILES 32 etcp/etcp.h 33 DESTINATION include/myriad/etcp ) 34 35 install(FILES 36 pool/align.h 37 pool/halloc.h 38 pool/hlist.h 39 pool/macros.h 40 pool/pool.h 41 DESTINATION include/myriad/pool ) 42 43 install(FILES 44 tasks/386-ucontext.h 45 tasks/power-ucontext.h 46 tasks/task.h 47 tasks/taskimpl.h 48 DESTINATION include/myriad/tasks ) 49 myriad/src/myriad/pool/halloc.c
r2 r123 13 13 */ 14 14 15 #include < malloc.h> /* realloc */15 #include <stdlib.h> /* realloc */ 16 16 #include <string.h> /* memset & co */ 17 17
