5 * Copyright 2008 Jon Loeliger, Freescale Semiconductor, Inc.
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 static inline void __attribute__((noreturn
)) die(char * str
, ...)
28 fprintf(stderr
, "FATAL ERROR: ");
29 vfprintf(stderr
, str
, ap
);
33 static inline void *xmalloc(size_t len
)
35 void *new = malloc(len
);
38 die("malloc() failed\n");
43 static inline void *xrealloc(void *p
, size_t len
)
45 void *new = realloc(p
, len
);
48 die("realloc() failed (len=%d)\n", len
);
53 extern char *xstrdup(const char *s
);
54 extern char *join_path(const char *path
, const char *name
);