summaryrefslogtreecommitdiffstats
path: root/lib/libc/time/strftime.c
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2015-02-09 13:32:51 +0000
committertedu <tedu@openbsd.org>2015-02-09 13:32:51 +0000
commita9cc4792617d499e1b9008630579042be8896f03 (patch)
treebe606ee4fe5fa07615a3d4bbede1d00b52ca94fe /lib/libc/time/strftime.c
parenttrim down some of the ifndef redefine madness (diff)
downloadwireguard-openbsd-a9cc4792617d499e1b9008630579042be8896f03.tar.xz
wireguard-openbsd-a9cc4792617d499e1b9008630579042be8896f03.zip
move include lines around a bit
Diffstat (limited to 'lib/libc/time/strftime.c')
-rw-r--r--lib/libc/time/strftime.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/time/strftime.c b/lib/libc/time/strftime.c
index dbf320ebc52..98fa6de7000 100644
--- a/lib/libc/time/strftime.c
+++ b/lib/libc/time/strftime.c
@@ -1,6 +1,4 @@
-/* $OpenBSD: strftime.c,v 1.22 2014/05/06 15:49:45 tedu Exp $ */
-#include "private.h"
-
+/* $OpenBSD: strftime.c,v 1.23 2015/02/09 13:32:51 tedu Exp $ */
/*
** Copyright (c) 1989, 1993
** The Regents of the University of California. All rights reserved.
@@ -30,9 +28,11 @@
** SUCH DAMAGE.
*/
+#include <fcntl.h>
+#include <locale.h>
+
+#include "private.h"
#include "tzfile.h"
-#include "fcntl.h"
-#include "locale.h"
struct lc_time_T {
const char * mon[MONSPERYEAR];