131781Sminshall /* 2*33816Sbostic * Copyright (c) 1988 Regents of the University of California. 3*33816Sbostic * All rights reserved. 4*33816Sbostic * 5*33816Sbostic * Redistribution and use in source and binary forms are permitted 6*33816Sbostic * provided that this notice is preserved and that due credit is given 7*33816Sbostic * to the University of California at Berkeley. The name of the University 8*33816Sbostic * may not be used to endorse or promote products derived from this 9*33816Sbostic * software without specific prior written permission. This software 10*33816Sbostic * is provided ``as is'' without express or implied warranty. 11*33816Sbostic */ 12*33816Sbostic 13*33816Sbostic #ifndef lint 14*33816Sbostic static char sccsid[] = "@(#)function.c 3.2 (Berkeley) 03/28/88"; 15*33816Sbostic #endif /* not lint */ 16*33816Sbostic 17*33816Sbostic /* 1831781Sminshall * This file, which never produces a function.o, is used solely to 1931781Sminshall * be run through the preprocessor. 2031781Sminshall * 2131781Sminshall * On a 4.3 system (or even msdos), "cc -E function.h" would produce 2231781Sminshall * the correct output. Unfortunately, 4.2 compilers aren't quite that 2331781Sminshall * useful. 2431781Sminshall */ 2531781Sminshall 2631781Sminshall #include "function.h" 27