* include/sys/sysmacros.h: Include sys/types.h.
This commit is contained in:
parent
dbf404f258
commit
9553860f41
|
@ -1,3 +1,7 @@
|
||||||
|
2012-02-08 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* include/sys/sysmacros.h: Include sys/types.h.
|
||||||
|
|
||||||
2012-02-07 Corinna Vinschen <corinna@vinschen.de>
|
2012-02-07 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* mount.cc (mount_info::create_root_entry): Fix format specifier in
|
* mount.cc (mount_info::create_root_entry): Fix format specifier in
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* sys/sysmacros.h
|
/* sys/sysmacros.h
|
||||||
|
|
||||||
Copyright 1998, 2001, 2010, 2011 Red Hat, Inc.
|
Copyright 1998, 2001, 2010, 2011, 2012 Red Hat, Inc.
|
||||||
|
|
||||||
This file is part of Cygwin.
|
This file is part of Cygwin.
|
||||||
|
|
||||||
|
@ -11,6 +11,8 @@ details. */
|
||||||
#ifndef _SYS_SYSMACROS_H
|
#ifndef _SYS_SYSMACROS_H
|
||||||
#define _SYS_SYSMACROS_H
|
#define _SYS_SYSMACROS_H
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
_ELIDABLE_INLINE int gnu_dev_major(dev_t);
|
_ELIDABLE_INLINE int gnu_dev_major(dev_t);
|
||||||
_ELIDABLE_INLINE int gnu_dev_minor(dev_t);
|
_ELIDABLE_INLINE int gnu_dev_minor(dev_t);
|
||||||
_ELIDABLE_INLINE dev_t gnu_dev_makedev(int, int);
|
_ELIDABLE_INLINE dev_t gnu_dev_makedev(int, int);
|
||||||
|
|
Loading…
Reference in New Issue