mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-04 09:32:00 +00:00 
			
		
		
		
	ggml : include stdlib.h before intrin.h (#4736)
This commit is contained in:
		@@ -5,6 +5,7 @@
 | 
				
			|||||||
// GGML internal header
 | 
					// GGML internal header
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <assert.h>
 | 
					#include <assert.h>
 | 
				
			||||||
 | 
					#include <stdlib.h> // load `stdlib.h` before other headers to work around MinGW bug: https://sourceforge.net/p/mingw-w64/bugs/192/
 | 
				
			||||||
#include <stddef.h>
 | 
					#include <stddef.h>
 | 
				
			||||||
#include <stdbool.h>
 | 
					#include <stdbool.h>
 | 
				
			||||||
#include <string.h> // memcpy
 | 
					#include <string.h> // memcpy
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user