Changeset 297f1197 in mainline
- Timestamp:
- 2008-05-04T12:43:18Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f520905
- Parents:
- 869e546
- Location:
- uspace/srv/fs/fat
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/Makefile
r869e546 r297f1197 45 45 SOURCES = \ 46 46 fat.c \ 47 fat_ops.c 47 fat_ops.c \ 48 fat_idx.c 48 49 49 50 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) -
uspace/srv/fs/fat/fat.h
r869e546 r297f1197 215 215 extern void fat_lookup(ipc_callid_t, ipc_call_t *); 216 216 217 extern fat_idx_t *fat_idx_map(fat_cluster_t, unsigned); 218 217 219 #endif 218 220 -
uspace/srv/fs/fat/fat_ops.c
r869e546 r297f1197 111 111 { 112 112 /* TODO */ 113 }114 115 static fat_idx_t *fat_idx_map(fat_cluster_t pfc, unsigned pdi)116 {117 return NULL; /* TODO */118 113 } 119 114
Note:
See TracChangeset
for help on using the changeset viewer.