From f146f4510510d01dae14f6a37111376a00ae5ab2 Mon Sep 17 00:00:00 2001 From: das Date: Sun, 13 Jun 2004 22:07:47 +0000 Subject: [PATCH] Add __fixpt_t to _types.h, and typedef __fixpt_t fixpt_t in types.h. --- sys/sys/_types.h | 2 ++ sys/sys/types.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/sys/_types.h b/sys/sys/_types.h index f9f00f2453b2..10030acc4421 100644 --- a/sys/sys/_types.h +++ b/sys/sys/_types.h @@ -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. diff --git a/sys/sys/types.h b/sys/sys/types.h index e319453ead0a..1cabc3f95c71 100644 --- a/sys/sys/types.h +++ b/sys/sys/types.h @@ -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;