Changeset 1264 in MondoRescue for branches/stable/mondo/src/lib
- Timestamp:
- Mar 24, 2007, 1:48:55 AM (18 years ago)
- Location:
- branches/stable/mondo/src/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/src/lib/mr_conf.c
r1256 r1264 17 17 #include <string.h> 18 18 19 #include "mr_types.h" 19 20 #include "mr_msg.h" 20 21 #include "mr_mem.h" … … 278 279 279 280 /*removes all comments from the buffer*/ 280 static void mr_conf_remove_comments( ) {281 static void mr_conf_remove_comments(void) { 281 282 char *tmp_buf; /*temporary buffer without comments */ 282 283 size_t length /*initial length */ ; -
branches/stable/mondo/src/lib/mr_err.c
r1256 r1264 19 19 #include "mr_msg.h" 20 20 21 /* This should be a pointer to func setup by the main function */ 22 /* Highly incomplete function for the moment */ 23 static void mr_cleanup(void) { 24 /* We have to free all allocated memory */ 25 /* We have to remove all temporary files */ 26 /* We have to unmount what has been mounted */ 27 /* We have to properly end newt */ 28 /* We have to remind people of log files */ 29 mr_msg_close(); 30 } 21 /* Pointer to the right cleanup function provided by each main */ 22 extern void *mr_cleanup(void); 31 23 32 24 /*
Note:
See TracChangeset
for help on using the changeset viewer.