about summary refs log tree commit diff
path: root/string/strsignal.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-08-24 08:53:30 +0000
committerUlrich Drepper <drepper@redhat.com>2000-08-24 08:53:30 +0000
commitc81459e7d88b97b5f9c3d08a04148e795bce326a (patch)
tree75e15e9a9b412904a6bcb42c52cadef84b0be10f /string/strsignal.c
parent0e255b9c271d3e316e74f6f70b05fdac90284576 (diff)
downloadglibc-c81459e7d88b97b5f9c3d08a04148e795bce326a.tar.gz
glibc-c81459e7d88b97b5f9c3d08a04148e795bce326a.tar.xz
glibc-c81459e7d88b97b5f9c3d08a04148e795bce326a.zip
Update.
2000-08-24  Ulrich Drepper  <drepper@redhat.com>

	* resolv/res_hconf.c (free_mem): Remove not needed if.

	* time/tzset.c (free_mem): New function.
	* string/strsignal.c (free_mem): New function.
	* inet/inet_ntoa.c (free_mem): New function.
	* sunrpc/clnt_perr.c (free_mem): New function.
Diffstat (limited to 'string/strsignal.c')
-rw-r--r--string/strsignal.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/string/strsignal.c b/string/strsignal.c
index a9d7233ec8..36a4450d54 100644
--- a/string/strsignal.c
+++ b/string/strsignal.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc.
+/* Copyright (C) 1991,94,95,96,97,98,99,2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -130,3 +130,11 @@ getbuffer (void)
 
   return result;
 }
+
+
+static void
+free_mem (void)
+{
+  free (static_buf);
+}
+text_set_element (__libc_subfreeres, free_mem);