#ifndef UT_H
#define UT_H 1

#include "sysdep.h"
#include "darray.h"

#ifdef __STDC__
Darray Darray_remove_ptr(Darray,VOIDP);
void RemoveArgs(int*,char**,int);
#else
Darray Darray_remove_ptr();
void RemoveArgs();
#endif

#endif
