Sat, 31 Dec 2011 17:08:26 +0100
Added some source files
ucx/Makefile | file | annotate | diff | comparison | revisions | |
ucx/list.c | file | annotate | diff | comparison | revisions | |
ucx/list.h | file | annotate | diff | comparison | revisions | |
ucx/map.c | file | annotate | diff | comparison | revisions | |
ucx/map.h | file | annotate | diff | comparison | revisions |
--- a/ucx/Makefile Sat Dec 31 15:54:08 2011 +0100 +++ b/ucx/Makefile Sat Dec 31 17:08:26 2011 +0100 @@ -29,7 +29,7 @@ include ../$(CONF).mk # list of source files -SRC = +SRC = list.c map.c OBJ = $(SRC:%.c=../build/%.$(OBJ_EXT))
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ucx/list.c Sat Dec 31 17:08:26 2011 +0100 @@ -0,0 +1,1 @@ +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ucx/list.h Sat Dec 31 17:08:26 2011 +0100 @@ -0,0 +1,20 @@ +/* + * + */ + +#ifndef LIST_H +#define LIST_H + +#ifdef __cplusplus +extern "C" { +#endif + + + + +#ifdef __cplusplus +} +#endif + +#endif /* LIST_H */ +