Browse Source

sort includes much more sensibly

OPENBSD_5_6
deraadt 10 years ago
parent
commit
d1fde0ca73
1 changed files with 8 additions and 9 deletions
  1. +8
    -9
      src/lib/libutil/readlabel.c

+ 8
- 9
src/lib/libutil/readlabel.c View File

@ -1,4 +1,4 @@
/* $OpenBSD: readlabel.c,v 1.11 2010/11/15 15:11:31 jsing Exp $ */
/* $OpenBSD: readlabel.c,v 1.12 2014/06/30 00:25:37 deraadt Exp $ */
/*
* Copyright (c) 1996, Jason Downs. All rights reserved.
@ -25,7 +25,13 @@
* SUCH DAMAGE.
*/
#include <sys/types.h>
#include <sys/param.h>
#include <sys/disk.h>
#include <sys/dkio.h>
#define DKTYPENAMES
#include <sys/disklabel.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <stdio.h>
#include <err.h>
#include <errno.h>
@ -33,13 +39,6 @@
#include <paths.h>
#include <string.h>
#include <unistd.h>
#include <sys/disk.h>
#include <sys/dkio.h>
#define DKTYPENAMES
#include <sys/disklabel.h>
#include <sys/ioctl.h>
#include <sys/param.h>
#include <sys/stat.h>
#include "util.h"


Loading…
Cancel
Save