Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/mips32/include/types.h

    r4196304 r63f8966  
    3939#define __32_BITS__
    4040
    41 #include <libarch/common.h>
     41typedef unsigned int sysarg_t;
    4242
    43 typedef uint32_t sysarg_t;
     43typedef char int8_t;
     44typedef short int int16_t;
     45typedef long int int32_t;
     46typedef long long int int64_t;
     47
     48typedef unsigned char uint8_t;
     49typedef unsigned short int uint16_t;
     50typedef unsigned long int uint32_t;
     51typedef unsigned long long int uint64_t;
    4452
    4553typedef int32_t ssize_t;
Note: See TracChangeset for help on using the changeset viewer.