summaryrefslogtreecommitdiff
path: root/moduli.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-07-24 14:09:40 +1000
committerDamien Miller <djm@mindrot.org>2006-07-24 14:09:40 +1000
commit5598b4f125f07ec0865ec56cddeb80c44e3d2d6a (patch)
tree4d718cb3e745262df66d16809c35471614e4b4b0 /moduli.c
parentee0d0db7da76138417186ed3b5b76dbb2a873cd8 (diff)
- stevesk@cvs.openbsd.org 2006/07/22 19:08:54
[includes.h moduli.c progressmeter.c scp.c sftp-common.c] [sftp-server.c ssh-agent.c sshlogin.c] move #include <time.h> out of includes.h
Diffstat (limited to 'moduli.c')
-rw-r--r--moduli.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/moduli.c b/moduli.c
index f6f15a2a4..9d4aedd5b 100644
--- a/moduli.c
+++ b/moduli.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: moduli.c,v 1.13 2006/03/25 00:05:41 djm Exp $ */ 1/* $OpenBSD: moduli.c,v 1.14 2006/07/22 19:08:54 stevesk Exp $ */
2/* 2/*
3 * Copyright 1994 Phil Karn <karn@qualcomm.com> 3 * Copyright 1994 Phil Karn <karn@qualcomm.com>
4 * Copyright 1996-1998, 2003 William Allen Simpson <wsimpson@greendragon.com> 4 * Copyright 1996-1998, 2003 William Allen Simpson <wsimpson@greendragon.com>
@@ -38,11 +38,16 @@
38 */ 38 */
39 39
40#include "includes.h" 40#include "includes.h"
41#include "xmalloc.h" 41
42#include "log.h" 42#include <sys/types.h>
43 43
44#include <openssl/bn.h> 44#include <openssl/bn.h>
45 45
46#include <time.h>
47
48#include "xmalloc.h"
49#include "log.h"
50
46/* 51/*
47 * File output defines 52 * File output defines
48 */ 53 */