File:  [CSRG BSD Unix] / 43BSD / ucb / pascal / src / treen.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Tue Apr 24 16:12:55 2018 UTC (8 years, 1 month ago) by root
Branches: MAIN, BSD
CVS tags: HEAD, BSD43
BSD 4.3

/*
 * Copyright (c) 1980 Regents of the University of California.
 * All rights reserved.  The Berkeley software License Agreement
 * specifies the terms and conditions for redistribution.
 */

#ifndef lint
static char sccsid[] = "@(#)treen.c	5.1 (Berkeley) 6/5/85";
#endif not lint

    /*
     *	is there some reason why these aren't #defined?
     */

#include	"0.h"
#include	"tree_ty.h"

struct tnode *
tree1 ( arg1 )
    int		arg1;
    {
	return( tree ( 1 , arg1 ));
    }

struct tnode *
tree2 ( arg1 , arg2 )
    int		arg1 , arg2;
    {
	return( tree ( 2 , arg1 , arg2 ));
    }

struct tnode *
tree3 ( arg1 , arg2 , arg3 )
    int		arg1 , arg2 ;
    struct	tnode *arg3;
    {
	return( tree ( 3 , arg1 , arg2 , arg3 ));
    }

struct tnode *
tree4 ( arg1 , arg2 , arg3 , arg4 )
    int		arg1 , arg2 ;
    struct tnode *arg3 , *arg4;
    {
	return( tree ( 4 , arg1 , arg2 , arg3 , arg4 ));
    }

struct tnode *
tree5 ( arg1 , arg2 , arg3 , arg4 , arg5 )
    int		arg1 , arg2 ;
    struct tnode *arg3 , *arg4 , *arg5;
    {
	return (tree ( 5 , arg1 , arg2 , arg3 , arg4 , arg5 ));
    }


unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.