1*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI"
2*7c478bd9Sstevel@tonic-gate
3*7c478bd9Sstevel@tonic-gate /*
4*7c478bd9Sstevel@tonic-gate * This file is part of libdyn.a, the C Dynamic Object library. It
5*7c478bd9Sstevel@tonic-gate * contains the source code for the function DynAppend().
6*7c478bd9Sstevel@tonic-gate *
7*7c478bd9Sstevel@tonic-gate * There are no restrictions on this code; however, if you make any
8*7c478bd9Sstevel@tonic-gate * changes, I request that you document them so that I do not get
9*7c478bd9Sstevel@tonic-gate * credit or blame for your modifications.
10*7c478bd9Sstevel@tonic-gate *
11*7c478bd9Sstevel@tonic-gate * Written by Barr3y Jaspan, Student Information Processing Board (SIPB)
12*7c478bd9Sstevel@tonic-gate * and MIT-Project Athena, 1989.
13*7c478bd9Sstevel@tonic-gate */
14*7c478bd9Sstevel@tonic-gate
15*7c478bd9Sstevel@tonic-gate #include <stdio.h>
16*7c478bd9Sstevel@tonic-gate
17*7c478bd9Sstevel@tonic-gate #include "dynP.h"
18*7c478bd9Sstevel@tonic-gate
19*7c478bd9Sstevel@tonic-gate /*
20*7c478bd9Sstevel@tonic-gate * Made obsolete by DynInsert, now just a convenience function.
21*7c478bd9Sstevel@tonic-gate */
DynAppend(obj,els,num)22*7c478bd9Sstevel@tonic-gate int DynAppend(obj, els, num)
23*7c478bd9Sstevel@tonic-gate DynObjectP obj;
24*7c478bd9Sstevel@tonic-gate DynPtr els;
25*7c478bd9Sstevel@tonic-gate int num;
26*7c478bd9Sstevel@tonic-gate {
27*7c478bd9Sstevel@tonic-gate return DynInsert(obj, DynSize(obj), els, num);
28*7c478bd9Sstevel@tonic-gate }
29