Commit 159cb091 authored by Michel Arruat's avatar Michel Arruat Committed by Adam Wujek

liblinux:libdevmap add inet.h header in libdevmap.h

        Header inet.h added in libdevmap.h and remove from applications.
Signed-off-by: Michel Arruat's avatarMichel Arruat <michel.arruat@cern.ch>
parent 9f7ff591
......@@ -6,6 +6,7 @@
#define __LIBDEVMAP_H__
#include <stdint.h>
#include <arpa/inet.h>
#define iomemr32(is_be, val) ((is_be) ? ntohl(val) : val)
#define iomemw32(is_be, val) ((is_be) ? htonl(val) : val)
......
......@@ -6,7 +6,6 @@
#include <getopt.h>
#include <errno.h>
#include <time.h>
#include <arpa/inet.h>
#include <libdevmap.h>
#include <extest.h>
......
......@@ -6,7 +6,6 @@
#include <getopt.h>
#include <errno.h>
#include <time.h>
#include <arpa/inet.h>
#include <libdevmap.h>
#include <extest.h>
......
......@@ -11,7 +11,6 @@
#include <termios.h>
#include <getopt.h>
#include <errno.h>
#include <arpa/inet.h>
#include <hw/wb_uart.h>
#include <libdevmap.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment