diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2014-04-05 16:32:30 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-04-05 16:32:30 -0400 |
commit | 4b76ac0bff27c0a32fc22591ec4543768ae5b991 (patch) | |
tree | d1ebdb173697e6c487556b98d98a7bebcfc613dc /src/mtd_probe | |
parent | c4c265804080234bd1fd47f8c5bf9e58aeca677a (diff) |
Revisit issue #87: fails to build on linux headers 3.13
We switch to defining _GNU_SOURCE as we do for cdrom_id.c
for a more consistant approach to this issue.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/mtd_probe')
-rw-r--r-- | src/mtd_probe/mtd_probe.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mtd_probe/mtd_probe.c b/src/mtd_probe/mtd_probe.c index ffba0eb51f..0fbf3ab832 100644 --- a/src/mtd_probe/mtd_probe.c +++ b/src/mtd_probe/mtd_probe.c @@ -16,6 +16,11 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301 USA */ + +#ifndef _GNU_SOURCE +#define _GNU_SOURCE 1 +#endif + #include "mtd_probe.h" #include <stdio.h> #include <sys/ioctl.h> @@ -26,10 +31,6 @@ #include <unistd.h> #include <stdlib.h> -#ifdef __UCLIBC__ -#include <linux/fcntl.h> -#endif - int main(int argc, char** argv) { int mtd_fd; |