diff options
author | 2009-07-26 12:38:20 +0000 | |
---|---|---|
committer | 2009-07-26 12:38:20 +0000 | |
commit | 32917b698e0468cc8272f5645d75cfe0a0c39461 (patch) | |
tree | 3b09949d4ea4c209f99eec4195387a578aa0837a | |
parent | Fix flow control support: (diff) | |
download | wireguard-openbsd-32917b698e0468cc8272f5645d75cfe0a0c39461.tar.xz wireguard-openbsd-32917b698e0468cc8272f5645d75cfe0a0c39461.zip |
sort and space headers as per style(9)
from Thomas Pfaff
-rw-r--r-- | lib/libsndio/aucat.c | 6 | ||||
-rw-r--r-- | lib/libsndio/mio.c | 6 | ||||
-rw-r--r-- | lib/libsndio/mio_rmidi.c | 5 | ||||
-rw-r--r-- | lib/libsndio/mio_thru.c | 6 | ||||
-rw-r--r-- | lib/libsndio/sndio.c | 6 | ||||
-rw-r--r-- | lib/libsndio/sun.c | 5 |
6 files changed, 21 insertions, 13 deletions
diff --git a/lib/libsndio/aucat.c b/lib/libsndio/aucat.c index 78c9bcfc85a..4e4d7489ba0 100644 --- a/lib/libsndio/aucat.c +++ b/lib/libsndio/aucat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aucat.c,v 1.23 2009/07/25 11:15:56 ratchov Exp $ */ +/* $OpenBSD: aucat.c,v 1.24 2009/07/26 12:38:20 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -14,15 +14,17 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ + #include <sys/types.h> #include <sys/socket.h> #include <sys/un.h> + #include <errno.h> #include <fcntl.h> #include <poll.h> #include <stdio.h> -#include <string.h> #include <stdlib.h> +#include <string.h> #include <unistd.h> #include "amsg.h" diff --git a/lib/libsndio/mio.c b/lib/libsndio/mio.c index 18720ef351d..4e5a53b329b 100644 --- a/lib/libsndio/mio.c +++ b/lib/libsndio/mio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mio.c,v 1.2 2009/07/25 11:15:56 ratchov Exp $ */ +/* $OpenBSD: mio.c,v 1.3 2009/07/26 12:38:20 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -14,16 +14,18 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ + #include <sys/param.h> #include <sys/types.h> #include <sys/time.h> #include <sys/stat.h> + #include <errno.h> #include <fcntl.h> #include <poll.h> #include <stdio.h> -#include <string.h> #include <stdlib.h> +#include <string.h> #include <unistd.h> #include "mio_priv.h" diff --git a/lib/libsndio/mio_rmidi.c b/lib/libsndio/mio_rmidi.c index 7db975bdb50..d07249e34de 100644 --- a/lib/libsndio/mio_rmidi.c +++ b/lib/libsndio/mio_rmidi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mio_rmidi.c,v 1.2 2009/07/25 11:15:56 ratchov Exp $ */ +/* $OpenBSD: mio_rmidi.c,v 1.3 2009/07/26 12:38:20 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -17,9 +17,10 @@ #include <sys/types.h> #include <sys/stat.h> -#include <limits.h> + #include <errno.h> #include <fcntl.h> +#include <limits.h> #include <poll.h> #include <stdio.h> #include <stdlib.h> diff --git a/lib/libsndio/mio_thru.c b/lib/libsndio/mio_thru.c index a541411a998..8a5cec1fa90 100644 --- a/lib/libsndio/mio_thru.c +++ b/lib/libsndio/mio_thru.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mio_thru.c,v 1.2 2009/07/25 11:15:56 ratchov Exp $ */ +/* $OpenBSD: mio_thru.c,v 1.3 2009/07/26 12:38:20 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -18,14 +18,14 @@ #include <sys/types.h> #include <sys/socket.h> #include <sys/un.h> + #include <errno.h> #include <fcntl.h> #include <poll.h> #include <stdio.h> -#include <string.h> #include <stdlib.h> +#include <string.h> #include <unistd.h> -#include <sys/types.h> #include "amsg.h" #include "mio_priv.h" diff --git a/lib/libsndio/sndio.c b/lib/libsndio/sndio.c index d18b0fe8729..dcb770d45d0 100644 --- a/lib/libsndio/sndio.c +++ b/lib/libsndio/sndio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sndio.c,v 1.17 2009/07/25 11:15:56 ratchov Exp $ */ +/* $OpenBSD: sndio.c,v 1.18 2009/07/26 12:38:20 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -14,16 +14,18 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ + #include <sys/param.h> #include <sys/types.h> #include <sys/time.h> #include <sys/stat.h> + #include <errno.h> #include <fcntl.h> #include <poll.h> #include <stdio.h> -#include <string.h> #include <stdlib.h> +#include <string.h> #include <unistd.h> #include "sndio_priv.h" diff --git a/lib/libsndio/sun.c b/lib/libsndio/sun.c index b8600b3b58c..5f267745d33 100644 --- a/lib/libsndio/sun.c +++ b/lib/libsndio/sun.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sun.c,v 1.19 2009/07/25 11:15:56 ratchov Exp $ */ +/* $OpenBSD: sun.c,v 1.20 2009/07/26 12:38:20 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -30,9 +30,10 @@ #include <sys/ioctl.h> #include <sys/audioio.h> #include <sys/stat.h> -#include <limits.h> + #include <errno.h> #include <fcntl.h> +#include <limits.h> #include <poll.h> #include <stdio.h> #include <stdlib.h> |