Changeset 80510
- Timestamp:
- 07/13/11 16:28:26 (4 years ago)
- Location:
- branches/gsoc11-rev-upgrade/base/src/libmachista1.0
- Files:
-
- 2 edited
-
libmachista.c (modified) (1 diff)
-
libmachista.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gsoc11-rev-upgrade/base/src/libmachista1.0/libmachista.c
r80430 r80510 483 483 484 484 /* Returns string representation of the MACHO_* error code constants */ 485 c har *macho_strerror(int errno) {485 const char *macho_strerror(int err) { 486 486 int num = 0; 487 while ((err no>>= 1) > 0)487 while ((err >>= 1) > 0) 488 488 num++; 489 489 static char *errors[] = { -
branches/gsoc11-rev-upgrade/base/src/libmachista1.0/libmachista.h
r80506 r80510 133 133 * Returns a string representation of the MACHO_* error code constants 134 134 */ 135 c har *macho_strerror(int errno);135 const char *macho_strerror(int err); 136 136 137 137 #endif
Note: See TracChangeset
for help on using the changeset viewer.

