Ignore:
Timestamp:
Jul 26, 2006, 3:35:40 AM (19 years ago)
Author:
bird
Message:

More backend porting.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libc/include/InnoTekLIBC/logstrict.h

    r2436 r2742  
    159159/** Macro to log an unsigned long int return and do the return. */
    160160#define LIBCLOG_RETURN_ULONG(rc)        LIBCLOG_RETURN_MSG((rc), "ret %lu (%#lx)\n", (rc), (rc))
     161/** Macro to log an off_t return and do the return. */
     162#define LIBCLOG_RETURN_OFF(rc)          LIBCLOG_RETURN_MSG((rc), "ret %lld (%#llx)\n", (rc), (rc))
    161163/** Macro to log a pointer return and do the return. */
    162164#define LIBCLOG_RETURN_P(rc)            LIBCLOG_RETURN_MSG((rc), "ret %p\n", (void*)(rc))
Note: See TracChangeset for help on using the changeset viewer.