linux/tools/virtio/linux/types.h
<<
>>
Prefs
   1#ifndef TYPES_H
   2#define TYPES_H
   3#include <stdint.h>
   4
   5#define __force
   6#define __user
   7#define __must_check
   8#define __cold
   9
  10typedef uint64_t u64;
  11typedef int64_t s64;
  12typedef uint32_t u32;
  13typedef int32_t s32;
  14typedef uint16_t u16;
  15typedef int16_t s16;
  16typedef uint8_t u8;
  17typedef int8_t s8;
  18
  19typedef uint64_t __u64;
  20typedef int64_t __s64;
  21typedef uint32_t __u32;
  22typedef int32_t __s32;
  23typedef uint16_t __u16;
  24typedef int16_t __s16;
  25typedef uint8_t __u8;
  26typedef int8_t __s8;
  27
  28#endif /* TYPES_H */
  29