Date: Thu, 27 Jun 2019 21:45:41 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r349470 - head/usr.sbin/bhyve Message-ID: <201906272145.x5RLjfoo082797@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906272145.x5RLjfoo082797>