Removed DOH/Include
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4161 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
98115bd5a9
commit
1cd4a401d0
9 changed files with 19 additions and 20 deletions
|
|
@ -1 +0,0 @@
|
|||
Makefile
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <ctype.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "doh.h"
|
||||
#include "dohobj.h"
|
||||
|
|
@ -28,9 +28,9 @@ LIBOBJS = void.@OBJEXT@ fio.@OBJEXT@ memory.@OBJEXT@ base.@OBJEXT@ file.@OBJEXT@
|
|||
|
||||
LIBSRCS = void.c fio.c memory.c base.c file.c list.c hash.c string.c
|
||||
|
||||
LIBHEADERS = $(srcdir)/Include/doh.h
|
||||
LIBHEADERS = $(srcdir)/doh.h
|
||||
LIB = libdoh.a
|
||||
INCLUDES = -I$(srcdir)/Include
|
||||
INCLUDES = -I$(srcdir)
|
||||
CFLAGS = @CFLAGS@
|
||||
SHELL = /bin/sh
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
/* -----------------------------------------------------------------------------
|
||||
* dohobj.h
|
||||
* dohint.h
|
||||
*
|
||||
* This file describes internally managed objects.
|
||||
*
|
||||
|
|
@ -11,8 +12,15 @@
|
|||
* $Header$
|
||||
* ----------------------------------------------------------------------------- */
|
||||
|
||||
#ifndef _DOHOBJ_H
|
||||
#define _DOHOBJ_H
|
||||
#ifndef _DOHINT_H
|
||||
#define _DOHINT_H
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <ctype.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "doh.h"
|
||||
|
||||
|
|
@ -117,7 +125,8 @@ typedef struct {
|
|||
extern DOH *DohObjMalloc(DohObjInfo *type, void *data); /* Allocate a DOH object */
|
||||
extern void DohObjFree(DOH *ptr); /* Free a DOH object */
|
||||
|
||||
#endif /* DOHOBJ_H */
|
||||
#endif /* DOHINT_H */
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue