[struct linebuffer] (size): Declare to be of type size_t, not long.
[gnulib.git] / lib / xstrtod.c
index f6edefc..099f537 100644 (file)
@@ -1,5 +1,5 @@
 /* xstrtod.c - error-checking interface to strtod
-   Copyright (C) 1996 Free Software Foundation, Inc.
+   Copyright (C) 1996, 1999 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
 /* Written by Jim Meyering.  */
 
 #ifdef HAVE_CONFIG_H
-#include <config.h>
+# include <config.h>
 #endif
 
 #ifdef STDC_HEADERS
-#include <stdlib.h>
+# include <stdlib.h>
 #else
 double strtod ();
 #endif
@@ -68,4 +68,3 @@ xstrtod (str, ptr, result)
   *result = val;
   return fail;
 }
-