Pull in <stdio.h> (for snprintf()) directly instead of
authorguenther <guenther@openbsd.org>
Sun, 18 Aug 2024 02:20:29 +0000 (02:20 +0000)
committerguenther <guenther@openbsd.org>
Sun, 18 Aug 2024 02:20:29 +0000 (02:20 +0000)
assuming some local .h will pull it in

ok deraadt@

lib/libc/locale/setlocale.c
lib/libc/time/localtime.c

index 08027ed..2c64c48 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: setlocale.c,v 1.30 2019/07/03 03:24:04 deraadt Exp $  */
+/*     $OpenBSD: setlocale.c,v 1.31 2024/08/18 02:20:29 guenther Exp $ */
 /*
  * Copyright (c) 2017 Ingo Schwarze <schwarze@openbsd.org>
  *
@@ -16,6 +16,7 @@
  */
 
 #include <locale.h>
+#include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 
index 82a3347..7c72c67 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: localtime.c,v 1.66 2024/04/04 02:20:01 millert Exp $ */
+/*     $OpenBSD: localtime.c,v 1.67 2024/08/18 02:20:29 guenther Exp $ */
 /*
 ** This file is in the public domain, so clarified as of
 ** 1996-06-05 by Arthur David Olson.
@@ -13,6 +13,7 @@
 #include <errno.h>
 #include <fcntl.h>
 #include <stdint.h>
+#include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>