Changeset 32d96e1 in mainline for uspace/srv
- Timestamp:
- 2012-05-13T08:56:01Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4e7637a
- Parents:
- b4ec1ea
- Location:
- uspace/srv/locsrv
- Files:
-
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/locsrv/Makefile
rb4ec1ea r32d96e1 29 29 30 30 USPACE_PREFIX = ../.. 31 BINARY = loc 31 BINARY = locsrv 32 32 STATIC_NEEDED = y 33 33 34 34 SOURCES = \ 35 35 category.c \ 36 loc .c36 locsrv.c 37 37 38 38 include $(USPACE_PREFIX)/Makefile.common -
uspace/srv/locsrv/category.c
rb4ec1ea r32d96e1 40 40 41 41 #include "category.h" 42 #include "loc .h"42 #include "locsrv.h" 43 43 44 44 /** Initialize category directory. */ -
uspace/srv/locsrv/category.h
rb4ec1ea r32d96e1 37 37 38 38 #include <adt/list.h> 39 #include "loc .h"39 #include "locsrv.h" 40 40 41 41 typedef sysarg_t catid_t; -
uspace/srv/locsrv/locsrv.c
rb4ec1ea r32d96e1 51 51 52 52 #include "category.h" 53 #include "loc .h"53 #include "locsrv.h" 54 54 55 55 #define NAME "loc" -
uspace/srv/locsrv/locsrv.h
rb4ec1ea r32d96e1 33 33 */ 34 34 35 #ifndef LOC _H_36 #define LOC _H_35 #ifndef LOCSRV_H_ 36 #define LOCSRV_H_ 37 37 38 38 #include <ipc/loc.h>
Note:
See TracChangeset
for help on using the changeset viewer.