diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-12-01 23:22:03 +0100 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-12-01 23:40:17 +0100 |
commit | 93cc7779e0c121b75183920173f37cd1ee9d59cf (patch) | |
tree | c6250457bc9893684ea63e014daf7a049c536d68 /src/basic/string-table.c | |
parent | c0f1f52317e6128f44b235aa6edf86ddf2043aaf (diff) |
basic: re-sort includes
My previous patch to only include what we use accidentially placed
the added inlcudes in non-sorted order.
Diffstat (limited to 'src/basic/string-table.c')
-rw-r--r-- | src/basic/string-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/string-table.c b/src/basic/string-table.c index 07a6d785f8..4633a57f44 100644 --- a/src/basic/string-table.c +++ b/src/basic/string-table.c @@ -19,8 +19,8 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ -#include "string-util.h" #include "string-table.h" +#include "string-util.h" ssize_t string_table_lookup(const char * const *table, size_t len, const char *key) { size_t i; |