* Remove include.

This commit is contained in:
bg- 2007-01-25 18:19:57 +00:00
parent 8ebe0466a0
commit e80af3ed34
2 changed files with 2 additions and 4 deletions

View File

@ -30,7 +30,7 @@
*/ */
/* $Id: malloc.c,v 1.2 2006/08/11 13:41:31 bg- Exp $ */ /* $Id: malloc.c,v 1.3 2007/01/25 18:19:57 bg- Exp $ */
#include <stdlib.h> #include <stdlib.h>
@ -38,7 +38,6 @@
#include "malloc.h" #include "malloc.h"
char mymem[256]; char mymem[256];
#else #else
#include <sys/unistd.h>
#include "contiki.h" #include "contiki.h"
#include "lib/malloc.h" #include "lib/malloc.h"
#endif /* !MALLOC_TEST */ #endif /* !MALLOC_TEST */

View File

@ -28,11 +28,10 @@
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. POSSIBILITY OF SUCH DAMAGE.
*/ */
/* $Id: realloc.c,v 1.1 2006/06/17 22:41:18 adamdunkels Exp $ */ /* $Id: realloc.c,v 1.2 2007/01/25 18:19:57 bg- Exp $ */
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <sys/unistd.h>
#ifdef MALLOC_TEST #ifdef MALLOC_TEST
#include "malloc.h" #include "malloc.h"