Diff for /embedaddon/bird/sysdep/config.h between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2017/08/22 12:33:54 version 1.1.1.2, 2021/03/17 19:50:23
Line 7 Line 7
 #define _BIRD_CONFIG_H_  #define _BIRD_CONFIG_H_
   
 /* BIRD version */  /* BIRD version */
#define BIRD_VERSION "1.6.3"#define BIRD_VERSION "1.6.8"
   
 /* Include parameters determined by configure script */  /* Include parameters determined by configure script */
 #include "sysdep/autoconf.h"  #include "sysdep/autoconf.h"
Line 24 Line 24
 #include "sysdep/paths.h"  #include "sysdep/paths.h"
   
 /* Types */  /* Types */
typedef signed INTEGER_8 s8;
typedef unsigned INTEGER_8 u8;#include <stdint.h>
typedef INTEGER_16 s16;typedef int8_t s8;
typedef unsigned INTEGER_16 u16;typedef uint8_t u8;
typedef INTEGER_32 s32;typedef int16_t s16;
typedef unsigned INTEGER_32 u32;typedef uint16_t u16;
typedef INTEGER_64 s64;typedef int32_t s32;
typedef unsigned INTEGER_64 u64;typedef uint32_t u32;
typedef u8 byte;typedef int64_t s64;
typedef u16 word;typedef uint64_t u64;
 typedef uint8_t byte;
 typedef uint16_t word;
 typedef unsigned int uint;  typedef unsigned int uint;
   
 #endif  #endif

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>