Lines Matching refs:file
7 # The contents of this file are subject to the terms of the
9 # (the "License"). You may not use this file except in compliance
18 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
36 function header(file, array) {
37 print "/*" > file
38 printf " * %s\n", file > file
39 print " *" > file
40 print " * XCurses Library" > file
41 print " *" > file
42 print " * **** THIS FILE IS MACHINE GENERATED." > file
43 print " * **** DO NOT EDIT THIS FILE." > file
44 print " *" > file
45 print " * Copyright 1990, 1995 by Mortice Kern Systems Inc. All rights reserved." > file
46 print " *" > file
47 print " */" > file
48 print > file
49 print "#if M_RCSID" > file
50 print "#ifndef lint" > file
51 printf "static char rcsID[] = \"$Header%s\"\n", "$" > file
52 print "#endif" > file
53 print "#endif" > file
54 print > file
55 printf "char *__m_%s[] = {\n", array > file
58 function tail(file) {
59 printf("\t0\n};\n\n") >file;
60 close(file);