sync code-style patch from libsl
This commit is contained in:
		
							parent
							
								
									5e76e7e21d
								
							
						
					
					
						commit
						e0dee91145
					
				
							
								
								
									
										23
									
								
								util.c
									
									
									
									
									
								
							
							
						
						
									
										23
									
								
								util.c
									
									
									
									
									
								
							| @ -6,18 +6,9 @@ | |||||||
| 
 | 
 | ||||||
| #include "util.h" | #include "util.h" | ||||||
| 
 | 
 | ||||||
| void * |  | ||||||
| ecalloc(size_t nmemb, size_t size) |  | ||||||
| { |  | ||||||
| 	void *p; |  | ||||||
| 
 |  | ||||||
| 	if (!(p = calloc(nmemb, size))) |  | ||||||
| 		die("calloc:"); |  | ||||||
| 	return p; |  | ||||||
| } |  | ||||||
| 
 |  | ||||||
| void | void | ||||||
| die(const char *fmt, ...) { | die(const char *fmt, ...) | ||||||
|  | { | ||||||
| 	va_list ap; | 	va_list ap; | ||||||
| 
 | 
 | ||||||
| 	va_start(ap, fmt); | 	va_start(ap, fmt); | ||||||
| @ -33,3 +24,13 @@ die(const char *fmt, ...) { | |||||||
| 
 | 
 | ||||||
| 	exit(1); | 	exit(1); | ||||||
| } | } | ||||||
|  | 
 | ||||||
|  | void * | ||||||
|  | ecalloc(size_t nmemb, size_t size) | ||||||
|  | { | ||||||
|  | 	void *p; | ||||||
|  | 
 | ||||||
|  | 	if (!(p = calloc(nmemb, size))) | ||||||
|  | 		die("calloc:"); | ||||||
|  | 	return p; | ||||||
|  | } | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Hiltjo Posthuma
						Hiltjo Posthuma