1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

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

This commit is contained in:
David Schultz 2004-06-13 22:07:47 +00:00
parent 7881f95056
commit 1db12dbd19
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=130434
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;