1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

#define udev_t dev_t in userland, so that programs which peek at

vnodes and stuff compile.  They may still not work however.
This commit is contained in:
Poul-Henning Kamp 1999-05-12 07:41:49 +00:00
parent 02342b0cfe
commit 7238b09623
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=47049

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)types.h 8.6 (Berkeley) 2/19/95
* $Id: types.h,v 1.30 1999/05/09 18:03:48 phk Exp $
* $Id: types.h,v 1.31 1999/05/11 19:55:00 phk Exp $
*/
#ifndef _SYS_TYPES_H_
@ -103,6 +103,7 @@ typedef u_int32_t dev_t;
#else /* !KERNEL */
typedef u_int32_t dev_t; /* device number */
#define udev_t dev_t
#ifndef _POSIX_SOURCE