diff options
author | Denys Vlasenko | 2017-09-18 16:28:43 +0200 |
---|---|---|
committer | Denys Vlasenko | 2017-09-18 16:28:43 +0200 |
commit | 0c4dbd481aedb5d22c1048e7f7eb547a3b5e50a5 (patch) | |
tree | cfe1328d742da3f0572ac8b2f06aa95259862ac5 /networking/nbd-client.c | |
parent | b63afead4411c5832d427ed149683c85cc81a4c9 (diff) | |
download | busybox-0c4dbd481aedb5d22c1048e7f7eb547a3b5e50a5.zip busybox-0c4dbd481aedb5d22c1048e7f7eb547a3b5e50a5.tar.gz |
regularize format of source file headers, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/nbd-client.c')
-rw-r--r-- | networking/nbd-client.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/networking/nbd-client.c b/networking/nbd-client.c index cf18572..bedb01a 100644 --- a/networking/nbd-client.c +++ b/networking/nbd-client.c @@ -3,20 +3,20 @@ * * Licensed under GPLv2, see file LICENSE in this source tree. */ -#include "libbb.h" -#include <netinet/tcp.h> -#include <linux/fs.h> - -//applet:IF_NBDCLIENT(APPLET_NOEXEC(nbd-client, nbdclient, BB_DIR_USR_SBIN, BB_SUID_DROP, nbdclient)) - -//kbuild:lib-$(CONFIG_NBDCLIENT) += nbd-client.o - //config:config NBDCLIENT //config: bool "nbd-client (4.6 kb)" //config: default y //config: help //config: Network block device client +//applet:IF_NBDCLIENT(APPLET_NOEXEC(nbd-client, nbdclient, BB_DIR_USR_SBIN, BB_SUID_DROP, nbdclient)) + +//kbuild:lib-$(CONFIG_NBDCLIENT) += nbd-client.o + +#include "libbb.h" +#include <netinet/tcp.h> +#include <linux/fs.h> + #define NBD_SET_SOCK _IO(0xab, 0) #define NBD_SET_BLKSIZE _IO(0xab, 1) #define NBD_SET_SIZE _IO(0xab, 2) |