summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/deborphan.h4
-rw-r--r--include/xalloc.h8
2 files changed, 6 insertions, 6 deletions
diff --git a/include/deborphan.h b/include/deborphan.h
index f1729fb..57bcd67 100644
--- a/include/deborphan.h
+++ b/include/deborphan.h
@@ -172,8 +172,8 @@ void print_usage();
int string_to_priority(const char *priority);
const char *priority_to_string(int priority);
char *sstrsep(char **str, int c);
-extern inline void strstripchr(char *s, int c);
-extern inline unsigned int strhash(const char *line);
+void strstripchr(char *s, int c);
+unsigned int strhash(const char *line);
/* keep.c */
dep *readkeep(const char *kfile);
diff --git a/include/xalloc.h b/include/xalloc.h
index ce519ad..761b73a 100644
--- a/include/xalloc.h
+++ b/include/xalloc.h
@@ -7,7 +7,7 @@
Distributed under the terms of the Artistic License.
*/
-extern inline void *xcalloc(size_t nmemb, size_t size);
-extern inline void *xmalloc(size_t size);
-extern inline void *xrealloc(void *ptr, size_t size);
-extern inline char *xstrdup(const char *s);
+void *xcalloc(size_t nmemb, size_t size);
+void *xmalloc(size_t size);
+void *xrealloc(void *ptr, size_t size);
+char *xstrdup(const char *s);