Changeset 4499 for i2c-tools/trunk/tools/i2cget.c
- Timestamp:
- 06/27/07 17:12:30 (6 years ago)
- Files:
-
- 1 modified
-
i2c-tools/trunk/tools/i2cget.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
i2c-tools/trunk/tools/i2cget.c
r4487 r4499 33 33 #include "../version.h" 34 34 35 void help(void) __attribute__ ((noreturn));36 37 void help(void)35 static void help(void) __attribute__ ((noreturn)); 36 37 static void help(void) 38 38 { 39 39 fprintf(stderr, "Syntax: i2cget [-f] [-y] I2CBUS CHIP-ADDRESS " … … 51 51 } 52 52 53 int check_funcs(int file, int i2cbus, int size, int daddress, int pec)53 static int check_funcs(int file, int i2cbus, int size, int daddress, int pec) 54 54 { 55 55 unsigned long funcs; … … 103 103 } 104 104 105 int confirm(const char *filename, int address, int size, int daddress, int pec) 105 static int confirm(const char *filename, int address, int size, int daddress, 106 int pec) 106 107 { 107 108 int dont = 0;
