Re: ftoastr.h: Include guard incomplete

2020-05-19 Thread Paul Eggert

On 5/19/20 12:27 PM, Marc Nieper-Wißkirchen wrote:

ftoastr.h tests for _GL_FTOASTR_H, but does not define it.


Thanks, I installed the attached.
>From b3c04ecec58ea687423f5c709410e6ecee4abd9b Mon Sep 17 00:00:00 2001
From: Paul Eggert 
Date: Tue, 19 May 2020 13:45:46 -0700
Subject: [PATCH] ftoastr: fix ifndef typo

* lib/ftoastr.h (_GL_FTOASTR_H): Define.
---
 ChangeLog | 5 +
 lib/ftoastr.h | 1 +
 2 files changed, 6 insertions(+)

diff --git a/ChangeLog b/ChangeLog
index 9ff7c69ca..1c39b92e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-19  Paul Eggert  
+
+	ftoastr: fix ifndef typo
+	* lib/ftoastr.h (_GL_FTOASTR_H): Define.
+
 2020-05-19  Bruno Haible  
 
 	havelib: Tweak documentation.
diff --git a/lib/ftoastr.h b/lib/ftoastr.h
index d945cc064..852e4000d 100644
--- a/lib/ftoastr.h
+++ b/lib/ftoastr.h
@@ -18,6 +18,7 @@
 /* Written by Paul Eggert.  */
 
 #ifndef _GL_FTOASTR_H
+#define _GL_FTOASTR_H
 
 #include "intprops.h"
 #include 
-- 
2.17.1



ftoastr.h: Include guard incomplete

2020-05-19 Thread Marc Nieper-Wißkirchen
ftoastr.h tests for _GL_FTOASTR_H, but does not define it.