summaryrefslogtreecommitdiff
path: root/src/shared/ether-addr-util.h
diff options
context:
space:
mode:
authorDaniel Mack <github@zonque.org>2015-06-11 11:50:18 +0200
committerDaniel Mack <github@zonque.org>2015-06-11 11:50:18 +0200
commit94f1f58d2b0aaab4db413f3c4ec6896a91b4c4ff (patch)
tree9fa192b353c6a3fcb56cc66149eeec7bd5e26150 /src/shared/ether-addr-util.h
parented4dc5bbd1d985d267ed146f98f7a02caf1c5078 (diff)
parenta095315b3c31f7a419baceac82c26c3c5ac0cd12 (diff)
Merge pull request #160 from kaysievers/libsplit
build-sys: split internal basic/ library from shared/
Diffstat (limited to 'src/shared/ether-addr-util.h')
-rw-r--r--src/shared/ether-addr-util.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/shared/ether-addr-util.h b/src/shared/ether-addr-util.h
deleted file mode 100644
index 7033138788..0000000000
--- a/src/shared/ether-addr-util.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
-
-#pragma once
-
-/***
- This file is part of systemd.
-
- Copyright 2014 Tom Gundersen
-
- systemd is free software; you can redistribute it and/or modify it
- under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation; either version 2.1 of the License, or
- (at your option) any later version.
-
- systemd is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License
- along with systemd; If not, see <http://www.gnu.org/licenses/>.
-***/
-
-#include <net/ethernet.h>
-
-#define ETHER_ADDR_FORMAT_STR "%02X%02X%02X%02X%02X%02X"
-#define ETHER_ADDR_FORMAT_VAL(x) (x).ether_addr_octet[0], (x).ether_addr_octet[1], (x).ether_addr_octet[2], (x).ether_addr_octet[3], (x).ether_addr_octet[4], (x).ether_addr_octet[5]