Changeset 4778
- Timestamp:
- 09/05/07 22:10:00 (6 years ago)
- Location:
- lm-sensors/branches/lm-sensors-3.0.0/lib
- Files:
-
- 1 added
- 2 modified
-
conf-parse.y (modified) (2 diffs)
-
init.c (modified) (1 diff)
-
init.h (added)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/branches/lm-sensors-3.0.0/lib/conf-parse.y
r4768 r4778 30 30 #include "conf.h" 31 31 #include "access.h" 32 #include "init.h" 32 33 33 34 /* These two functions are defined in conf-lex.l */ … … 38 39 static void sensors_yyerror(const char *err); 39 40 static sensors_expr *malloc_expr(void); 40 /* free_expr is defined in init.c */41 void free_expr(sensors_expr *expr);42 41 43 42 static sensors_chip *current_chip = NULL; -
lm-sensors/branches/lm-sensors-3.0.0/lib/init.c
r4768 r4778 27 27 #include "sysfs.h" 28 28 #include "scanner.h" 29 #include "init.h" 29 30 30 31 int sensors_init(FILE *input)
