Import readline 8.0
[deliverable/binutils-gdb.git] / readline / xfree.c
index 37a81e6c236cbd2d4e8f12951cf32ef8b1942410..c199b29bdfd769987494d6faa90270cea8625adf 100644 (file)
@@ -1,6 +1,6 @@
 /* xfree.c -- safe version of free that ignores attempts to free NUL */
 
-/* Copyright (C) 1991-2010 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2010,2017 Free Software Foundation, Inc.
 
    This file is part of the GNU Readline Library (Readline), a library
    for reading lines of text with interactive input and history editing.      
@@ -42,8 +42,7 @@
 /* Use this as the function to call when adding unwind protects so we
    don't need to know what free() returns. */
 void
-xfree (string)
-     PTR_T string;
+xfree (PTR_T string)
 {
   if (string)
     free (string);
This page took 0.026105 seconds and 4 git commands to generate.