Fix IO memory access .. SB128 driver makes noises in VMWare - CMI is untested (Curren...
[AROS.git] / tools / fd2inline / makepragmas.awk
blob9bcdc4fe8b85ddf95fea050d189c137c1c4d4c1b
1 #! /bin/awk -f
3 # makepragmas.awk
5 # Copyright (C) 1996 Kamil Iskra <iskra@student.uci.agh.edu.pl>
6 # Distributed under terms of GNU General Public License.
8 # This file is part of fd2inline package.
10 # It is used to produce SAS/C compatible "pragmas" files.
12 # Input variables:
13 # PRAGMAS - basename of "pragma" file to create.
15 BEGIN {
16 print "/* Automatically generated header! Do not edit! */"
17 print
18 print "#ifndef _INLINE_" toupper(PRAGMAS) "_H"
19 print "#include <inline/" PRAGMAS ".h>"
20 print "#endif /* !_INLINE_" toupper(PRAGMAS) "_H */"
21 exit