Added Macro IN_LIMITS to sys/types.h tio be available globally

dev-top
Harald Wolff 2017-11-20 13:56:23 +01:00
parent 724686944d
commit ea7b22b4eb
1 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,11 @@
#include <stdint.h>
#if !defined(IN_LIMITS)
#define IN_LIMITS(v,min,max) ( (min<=v) && (v <= max) )
#endif
typedef int32_t APICALL;
typedef struct {