comparison src/mkbuiltins @ 2335:4a9feb849125

[project @ 1996-07-19 02:51:02 by jwe] Initial revision
author jwe
date Fri, 19 Jul 1996 02:53:49 +0000
parents
children d423dcc0ac32
comparison
equal deleted inserted replaced
2334:893481f3a763 2335:4a9feb849125
1 #!/bin/sh
2
3 cat << \EOF
4 // DO NOT EDIT! Generated automatically by mkbuiltins.
5
6 #ifdef HAVE_CONFIG_H
7 #include "config.h"
8 #endif
9
10 #include "builtins.h"
11 #include "mappers.h"
12 #include "oct-obj.h"
13 #include "variables.h"
14
15 static void
16 install_builtin_functions (void)
17 {
18 EOF
19
20 cat "$@"
21
22 cat << \EOF
23 }
24
25 void
26 install_builtins (void)
27 {
28 install_builtin_variables ();
29 install_mapper_functions ();
30 install_builtin_functions ();
31 }
32 EOF
33
34 exit 0