Include <string.h>, for declarations of memset and memcpy.
authorJim Meyering <jim@meyering.net>
Thu, 16 Oct 2003 07:07:33 +0000 (07:07 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 16 Oct 2003 07:07:33 +0000 (07:07 +0000)
lib/xmalloc.c

index f2fddb75c66cb0d73f47cb83ac0ab3d6a669f1d7..a595fe32bdd1a729abc1b332c9d666a484affc11 100644 (file)
@@ -1,6 +1,6 @@
 /* xmalloc.c -- malloc with out of memory checking
 
-   Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+   Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2003,
    1999, 2000, 2002, 2003 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
@@ -25,6 +25,7 @@
 
 #include <stdbool.h>
 #include <stdlib.h>
+#include <string.h>
 
 #include "gettext.h"
 #define _(msgid) gettext (msgid)