Handle systems where the makedev() macro is named mkdev().

This commit is contained in:
Wayne Davison
2004-10-08 21:27:22 +00:00
parent 8303cc1021
commit 73496a36a1

View File

@@ -255,6 +255,9 @@ enum msgcode {
#if MAJOR_IN_MKDEV
#include <sys/mkdev.h>
# if !defined(makedev) && defined(mkdev)
# define makedev mkdev
# endif
#elif MAJOR_IN_SYSMACROS
#include <sys/sysmacros.h>
#endif