svn commit: r349470 - head/usr.sbin/bhyve
John Baldwin
jhb at FreeBSD.org
Thu Jun 27 21:45:42 UTC 2019
Author: jhb
Date: Thu Jun 27 21:45:40 2019
New Revision: 349470
URL: https://svnweb.freebsd.org/changeset/base/349470
Log:
Use __FBSDID() and sort #includes.
No functional change.
Modified:
head/usr.sbin/bhyve/net_utils.c
Modified: head/usr.sbin/bhyve/net_utils.c
==============================================================================
--- head/usr.sbin/bhyve/net_utils.c Thu Jun 27 20:34:50 2019 (r349469)
+++ head/usr.sbin/bhyve/net_utils.c Thu Jun 27 21:45:40 2019 (r349470)
@@ -21,17 +21,21 @@
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * $FreeBSD$
*/
-#include "net_utils.h"
-#include "bhyverun.h"
-#include <md5.h>
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include <sys/types.h>
#include <net/ethernet.h>
-#include <string.h>
-#include <stdio.h>
+
#include <errno.h>
+#include <md5.h>
+#include <stdio.h>
+#include <string.h>
+
+#include "bhyverun.h"
+#include "net_utils.h"
int
net_parsemac(char *mac_str, uint8_t *mac_addr)
More information about the svn-src-all
mailing list