Add __fixpt_t to _types.h, and typedef __fixpt_t fixpt_t in types.h.

This commit is contained in:
das 2004-06-13 22:07:47 +00:00
parent a73d5d0e50
commit f146f45105
2 changed files with 3 additions and 1 deletions

View File

@ -90,6 +90,8 @@ typedef struct cdev *__dev_t;
typedef __udev_t __dev_t; /* device number */
#endif
typedef __uint32_t __fixpt_t; /* fixed point number */
/*
* mbstate_t is an opaque object to keep conversion state during multibyte
* stream conversions.

View File

@ -140,7 +140,7 @@ typedef __fflags_t fflags_t; /* file flags */
#define _FFLAGS_T_DECLARED
#endif
typedef __uint32_t fixpt_t; /* fixed point number */
typedef __fixpt_t fixpt_t; /* fixed point number */
#ifndef _FSBLKCNT_T_DECLARED /* for statvfs() */
typedef __fsblkcnt_t fsblkcnt_t;