home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
octave-1.1.1p1-src.tgz
/
tar.out
/
fsf
/
octave
/
src
/
mkbuiltins
< prev
next >
Wrap
Text File
|
1996-09-28
|
434b
|
35 lines
#!/bin/sh
cat << \EOF
// DO NOT EDIT! Generated automatically by mkbuiltins.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "mappers.h"
#include "variables.h"
#include "builtins.h"
#include "oct-obj.h"
static void
install_builtin_functions (void)
{
EOF
cat "$@"
cat << \EOF
}
void
install_builtins (void)
{
install_builtin_variables ();
install_mapper_functions ();
install_builtin_functions ();
}
EOF
exit 0