wg: use libc's endianness macro if no compiler macro
This lets us be compiled with ancient gcc. Reported-by: Jeff Brandt <jeff@jeffcolo.net> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
		
							parent
							
								
									846d2514c5
								
							
						
					
					
						commit
						c1ca487f63
					
				
					 1 changed files with 10 additions and 0 deletions
				
			
		| 
						 | 
					@ -8,6 +8,16 @@
 | 
				
			||||||
#include <stdint.h>
 | 
					#include <stdint.h>
 | 
				
			||||||
#include <string.h>
 | 
					#include <string.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifndef __BYTE_ORDER__
 | 
				
			||||||
 | 
					#include <sys/param.h>
 | 
				
			||||||
 | 
					#if !defined(BYTE_ORDER) || !defined(BIG_ENDIAN) || !defined(LITTLE_ENDIAN)
 | 
				
			||||||
 | 
					#error "Unable to determine endianness."
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					#define __BYTE_ORDER__ BYTE_ORDER
 | 
				
			||||||
 | 
					#define __ORDER_BIG_ENDIAN__ BIG_ENDIAN
 | 
				
			||||||
 | 
					#define __ORDER_LITTLE_ENDIAN__ LITTLE_ENDIAN
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef __linux__
 | 
					#ifdef __linux__
 | 
				
			||||||
#include <linux/types.h>
 | 
					#include <linux/types.h>
 | 
				
			||||||
typedef __u64 u64;
 | 
					typedef __u64 u64;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue