summaryrefslogtreecommitdiff
path: root/atomicio.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-08-05 11:35:23 +1000
committerDamien Miller <djm@mindrot.org>2006-08-05 11:35:23 +1000
commit1a5b4041fbe92b13bea046bd683a1dd887514605 (patch)
treecb9142f7bb02489c4b1bcc27408b461c3ec16f97 /atomicio.h
parent858bb7dc7c41816e0c779b1bda09324b9ea97ddf (diff)
- stevesk@cvs.openbsd.org 2006/07/30 20:15:19
[atomicio.h] order includes to KNF
Diffstat (limited to 'atomicio.h')
-rw-r--r--atomicio.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/atomicio.h b/atomicio.h
index 03bf065e2..05b97ab8b 100644
--- a/atomicio.h
+++ b/atomicio.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: atomicio.h,v 1.8 2006/04/16 00:52:55 djm Exp $ */ 1/* $OpenBSD: atomicio.h,v 1.9 2006/07/30 20:15:19 stevesk Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2006 Damien Miller. All rights reserved. 4 * Copyright (c) 2006 Damien Miller. All rights reserved.
@@ -30,9 +30,10 @@
30#define _ATOMICIO_H 30#define _ATOMICIO_H
31 31
32#include <sys/types.h> 32#include <sys/types.h>
33#include <unistd.h>
34#include <sys/uio.h> 33#include <sys/uio.h>
35 34
35#include <unistd.h>
36
36/* 37/*
37 * Ensure all of data on socket comes through. f==read || f==vwrite 38 * Ensure all of data on socket comes through. f==read || f==vwrite
38 */ 39 */