diff options
author | Pali Rohár <pali.rohar@gmail.com> | 2016-12-17 01:51:33 +0100 |
---|---|---|
committer | Pali Rohár <pali.rohar@gmail.com> | 2016-12-17 01:51:33 +0100 |
commit | 430930537cf483847419bcfacce00ff3f75b8db8 (patch) | |
tree | db8e303c5c948c86ddf0ecfdbe14a96d99e4ae9a | |
parent | 7522a9fbc72f14c5cb7fbaa54fb57526c5221d85 (diff) | |
download | 0xFFFF-430930537cf483847419bcfacce00ff3f75b8db8.tar.bz2 |
all: Use #include <sys/sysmacros.h> for major() instead #define _BSD_SOURCE
-rw-r--r-- | src/cal.c | 7 | ||||
-rw-r--r-- | src/disk.c | 7 |
2 files changed, 2 insertions, 12 deletions
@@ -20,12 +20,6 @@ /* This is simple CAL parser form Calvaria */ -#ifdef __linux__ -#ifndef _BSD_SOURCE -#define _BSD_SOURCE -#endif -#endif - #include <stdio.h> #include <stdlib.h> #include <stdint.h> @@ -42,6 +36,7 @@ #ifdef __linux__ #include <linux/fs.h> #include <mtd/mtd-user.h> +#include <sys/sysmacros.h> #endif #include "cal.h" @@ -16,12 +16,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifdef __linux__ -#ifndef _BSD_SOURCE -#define _BSD_SOURCE -#endif -#endif - #include <fcntl.h> #include <libgen.h> #include <unistd.h> @@ -32,6 +26,7 @@ #include <sys/statvfs.h> #ifdef __linux__ +#include <sys/sysmacros.h> #include <sys/ioctl.h> #include <linux/fs.h> #include <dirent.h> |