aros: add licence to aros_compat.h
[deb_libnfs.git] / aros / aros_compat.h
index e882967a6ee2e2ad14ab4ef867aab44e2d56a268..2089bc89a13dd1bdd4ff11aa6113fd9c5940c8fe 100644 (file)
@@ -1,3 +1,20 @@
+/*
+   Copyright (C) 2013 by Ronnie Sahlberg <ronniesahlberg@gmail.com>
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU Lesser General Public License as published by
+   the Free Software Foundation; either version 2.1 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program; if not, see <http://www.gnu.org/licenses/>.
+*/
+
 #ifndef AROS_COMPAT_H
 #define AROS_COMPAT_H
 
@@ -8,6 +25,9 @@
 #include <sys/mount.h>
 #include <proto/socket.h>
 #include <proto/exec.h>
+#include <netdb.h>
+#include <net/if.h>
+#include <netinet/in.h>
 
 #define statvfs statfs
 #define ioctl IoctlSocket
@@ -36,6 +56,11 @@ void aros_init_socket(void);
 #define POLLHUP     0x0010    /* Hung up */
 #define POLLNVAL    0x0020    /* Invalid request: fd not open */
 
+struct utimbuf {
+       int actime;
+       int modtime;
+};
+
 struct pollfd {
     int fd;           /* file descriptor */
     short events;     /* requested events */