build changes

This commit is contained in:
Marty Kraimer
2000-02-10 19:06:32 +00:00
parent f69e9f4323
commit e8ae54e916
4 changed files with 37 additions and 6 deletions

View File

@@ -0,0 +1,25 @@
/* callbackTestMain.c */
/* Author: Marty Kraimer Date: 26JAN2000 */
/********************COPYRIGHT NOTIFICATION**********************************
This software was developed under a United States Government license
described on the COPYRIGHT_UniversityOfChicago file included as part
of this distribution.
****************************************************************************/
#include <stddef.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>
void *pdbbase=NULL;
void callbackTest(void);
int main(int argc,char *argv[])
{
callbackTest();
printf("main terminating\n");
return(0);
}