home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
fd2inline-1.0-src.tgz
/
tar.out
/
contrib
/
fd2inline
/
makepragmas.awk
< prev
next >
Wrap
Text File
|
1996-09-28
|
454b
|
21 lines
#! /bin/awk -f
#
# makepragmas.awk
#
# Copyright (C) 1996 Kamil Iskra <iskra@student.uci.agh.edu.pl>
# Distributed under terms of GNU General Public License.
#
# This file is part of fd2inline package.
#
# It is used to produce SAS/C compatible "pragmas" files.
#
# Input variables:
# PRAGMAS - basename of "pragma" file to create.
BEGIN {
print "#ifndef _INLINE_" toupper(PRAGMAS) "_H"
print "#include <inline/" PRAGMAS ".h>"
print "#endif"
exit
}