Index: /tt-loader/main.c
===================================================================
--- /tt-loader/main.c	(revision 12)
+++ /tt-loader/main.c	(revision 13)
@@ -79,5 +79,5 @@
 #endif
 
-static inline unsigned roundup (unsigned v, unsigned d)
+static inline unsigned round_up (unsigned v, unsigned d)
 {
 	v+= --d;
@@ -198,5 +198,5 @@
 	}
 	
-	toread.content= malloc (roundup (toread.size, 4));
+	toread.content= malloc (round_up (toread.size, 4));
 	if (toread.content == NULL)
 	{
@@ -763,8 +763,8 @@
 									free((void *)current.content);
 								current.size = size ;
-								p = malloc (roundup (size, 4));
+								p = malloc (round_up (size, 4));
 								if ( p == NULL)
 								{
-									log2("Out of memory requesting %d bytes\n", roundup (size, 4));
+									log2("Out of memory requesting %d bytes\n", round_up (size, 4));
 									loop=0 ;
 									break ;
@@ -958,5 +958,5 @@
 	}
 	
-	size= roundup (size, 4);
+	size= round_up (size, 4);
 	
 	p[0x21]= cpu_to_le32 (size - 0x40);
@@ -969,5 +969,5 @@
 	p[0x12]= cpu_to_le32 (size);
 	
-	buffsize= 128 + roundup (size, 4);
+	buffsize= 128 + round_up (size, 4);
 	
 	cmdfile = readfile(argv[ARG_CMDFILE]);
