Modified makefile to use common lib
[yaz-moved-to-github.git] / odr / odr_mem.c
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_mem.c,v $
7  * Revision 1.1  1995-03-14 10:27:40  quinn
8  * Modified makefile to use common lib
9  * Beginning to add memory management to odr
10  *
11  *
12  */
13
14 #include <stdlib.h>
15
16 #include <odr.h>
17
18 char *odr_malloc(ODR o, int size)
19 {
20     return malloc(size); /* REPLACE WITH NIBBLE MALLOC!! */
21 }