view src/mkbuiltins @ 2371:dd29ab8af9e7

[project @ 1996-10-12 00:09:55 by jwe]
author jwe
date Sat, 12 Oct 1996 00:09:57 +0000
parents 4a9feb849125
children d423dcc0ac32
line wrap: on
line source

#!/bin/sh

cat << \EOF
// DO NOT EDIT!  Generated automatically by mkbuiltins.

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "builtins.h"
#include "mappers.h"
#include "oct-obj.h"
#include "variables.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