chiark / gitweb /
Licensing: Update copyright dates for Ian Jackson
[adns.git] / regress / hsyscalls.h.m4
1 m4_dnl hsyscalls.h.m4
2 m4_dnl (part of complex test harness, not of the library)
3 m4_dnl - prototypes of redefinitions of system calls
4
5 m4_dnl  This file is part of adns, which is
6 m4_dnl    Copyright (C) 1997-2000,2003,2006,2014  Ian Jackson
7 m4_dnl    Copyright (C) 1999-2000,2003,2006  Tony Finch
8 m4_dnl    Copyright (C) 1991 Massachusetts Institute of Technology
9 m4_dnl  (See the file INSTALL for full details.)
10 m4_dnl  
11 m4_dnl  This program is free software; you can redistribute it and/or modify
12 m4_dnl  it under the terms of the GNU General Public License as published by
13 m4_dnl  the Free Software Foundation; either version 3, or (at your option)
14 m4_dnl  any later version.
15 m4_dnl  
16 m4_dnl  This program is distributed in the hope that it will be useful,
17 m4_dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
18 m4_dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 m4_dnl  GNU General Public License for more details.
20 m4_dnl  
21 m4_dnl  You should have received a copy of the GNU General Public License
22 m4_dnl  along with this program; if not, write to the Free Software Foundation.
23
24 m4_include(hmacros.i4)
25
26 #ifndef HSYSCALLS_H_INCLUDED
27 #define HSYSCALLS_H_INCLUDED
28
29 #include <sys/types.h>
30 #include <sys/time.h>
31 #include <sys/socket.h>
32 #include <sys/uio.h>
33 #include <unistd.h>
34
35 #ifdef HAVE_POLL
36 #include <sys/poll.h>
37 #endif
38
39 hm_create_proto_h
40 m4_define(`hm_syscall', `int H$1(hm_args_massage($3,void));')
41 m4_define(`hm_specsyscall', `$1 H$2($3)$4;')
42 m4_include(`hsyscalls.i4')
43
44 #endif