mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
commit
09e406cda3
@ -26,6 +26,7 @@ License. See the file LICENSE in the top level directory for more details.
|
||||
#include <sched.h>
|
||||
#include <stdio.h>
|
||||
#include <legacymsp430.h>
|
||||
#include <msp430_types.h>
|
||||
#include <cpu-conf.h>
|
||||
|
||||
#define WORDSIZE 16
|
||||
|
@ -4,6 +4,7 @@
|
||||
#include "oneway_malloc.h"
|
||||
|
||||
#define malloc _malloc
|
||||
#define calloc _calloc
|
||||
#define realloc _realloc
|
||||
#define free _free
|
||||
|
||||
|
9
cpu/msp430-common/include/msp430_types.h
Normal file
9
cpu/msp430-common/include/msp430_types.h
Normal file
@ -0,0 +1,9 @@
|
||||
#ifndef MSP430_TYPES_H
|
||||
#define MSP430_TYPES_H
|
||||
|
||||
#include <sys/_types.h>
|
||||
|
||||
/** defining signed type for size_t */
|
||||
typedef _ssize_t ssize_t;
|
||||
|
||||
#endif /* MSP430_TYPES_H */
|
@ -5,7 +5,7 @@
|
||||
#include <string.h>
|
||||
#include <stdint.h>
|
||||
#include <math.h>
|
||||
#include "oneway_malloc.h"
|
||||
#include "malloc.h"
|
||||
#include "hashtable.h"
|
||||
#include "hashtable_private.h"
|
||||
|
||||
|
@ -25,6 +25,7 @@
|
||||
#include "udp.h"
|
||||
#include "in.h"
|
||||
#include "ipv6.h"
|
||||
#include "cpu.h"
|
||||
|
||||
/*
|
||||
* POSIX compatibility
|
||||
|
@ -21,6 +21,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "malloc.h"
|
||||
#include "vtimer.h"
|
||||
#include "mutex.h"
|
||||
#include "sixlowpan/error.h"
|
||||
|
Loading…
Reference in New Issue
Block a user