Revision 9596ebb7 dyngen.c

b/dyngen.c
232 232

  
233 233
int do_swap;
234 234

  
235
void __attribute__((noreturn)) __attribute__((format (printf, 1, 2))) error(const char *fmt, ...)
235
static void __attribute__((noreturn)) __attribute__((format (printf, 1, 2))) error(const char *fmt, ...)
236 236
{
237 237
    va_list ap;
238 238
    va_start(ap, fmt);
......
243 243
    exit(1);
244 244
}
245 245

  
246
void *load_data(int fd, long offset, unsigned int size)
246
static void *load_data(int fd, long offset, unsigned int size)
247 247
{
248 248
    char *data;
249 249

  

Also available in: Unified diff