Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Martin / daiteq-libs

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • daiteq-libs
  • openlibm
  • types-compat.h
  • Roman's avatar
    Add libs bsp,builtins,m,softfloat,testfloat · cab37234
    Signed-off-by: Roman Bartosinski <roman@daiteq.com>
    Roman committed Sep 01, 2020
    cab37234 Browse Files
types-compat.h 264 Bytes
BlameHistoryPermalink
Edit
1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef _TYPES_COMPAT_H_
#define	_TYPES_COMPAT_H_

#include <stdint.h>
#include <limits.h>

typedef uint8_t               u_int8_t;
typedef uint16_t              u_int16_t;
typedef uint32_t              u_int32_t;
typedef uint64_t              u_int64_t;


#endif