changing order
This commit is contained in:
		
							parent
							
								
									3d25a327aa
								
							
						
					
					
						commit
						95b19f75cc
					
				
					 1 changed files with 9 additions and 9 deletions
				
			
		
							
								
								
									
										18
									
								
								util.c
									
										
									
									
									
								
							
							
						
						
									
										18
									
								
								util.c
									
										
									
									
									
								
							|  | @ -18,15 +18,6 @@ emalloc(unsigned int size) { | |||
| 	return res; | ||||
| } | ||||
| 
 | ||||
| char * | ||||
| estrdup(const char *str) { | ||||
| 	void *res = strdup(str); | ||||
| 
 | ||||
| 	if(!res) | ||||
| 		eprint("fatal: could not malloc() %u bytes\n", strlen(str)); | ||||
| 	return res; | ||||
| } | ||||
| 
 | ||||
| void | ||||
| eprint(const char *errstr, ...) { | ||||
| 	va_list ap; | ||||
|  | @ -36,3 +27,12 @@ eprint(const char *errstr, ...) { | |||
| 	va_end(ap); | ||||
| 	exit(EXIT_FAILURE); | ||||
| } | ||||
| 
 | ||||
| char * | ||||
| estrdup(const char *str) { | ||||
| 	void *res = strdup(str); | ||||
| 
 | ||||
| 	if(!res) | ||||
| 		eprint("fatal: could not malloc() %u bytes\n", strlen(str)); | ||||
| 	return res; | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue