]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Update from gnulib.
authorBruno Haible <bruno@clisp.org>
Wed, 28 Jun 2006 16:27:38 +0000 (16:27 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:13:27 +0000 (12:13 +0200)
gettext-tools/lib/ChangeLog
gettext-tools/lib/xvasprintf.h

index 1862963a163a8981f6ab5df27f4bede0b7e0f256..4a4b929edd21c1e904c92b7f8152e9344e417c54 100644 (file)
@@ -1,3 +1,7 @@
+2006-06-28  Bruno Haible  <bruno@clisp.org>
+
+        * xvasprintf.h: Update from gnulib.
+
 2006-04-14  Bruno Haible  <bruno@clisp.org>
 
        Assume autoconf >= 2.60.
index 91cf54ec193caf8ab4fd47d91199d888eda2beb1..de55a9f0c866911d1f9df4af4703181f223b3aab 100644 (file)
@@ -1,5 +1,5 @@
 /* vasprintf and asprintf with out-of-memory checking.
-   Copyright (C) 2002-2004 Free Software Foundation, Inc.
+   Copyright (C) 2002-2004, 2006 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 extern "C" {
 #endif
 
-/* Write formatted output to a string dynamically allocated with malloc().
-   If the memory allocation succeeds, store the address of the string in
-   *RESULT and return the number of resulting bytes, excluding the trailing
-   NUL.  Upon [ENOMEM] memory allocation error, call xalloc_die.
+/* Write formatted output to a string dynamically allocated with malloc(),
+   and return it.  Upon [ENOMEM] memory allocation error, call xalloc_die.
    On some other error
      - [EOVERFLOW] resulting string length is > INT_MAX,
      - [EINVAL] invalid format string,