diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.am | 1 | ||||
-rw-r--r-- | include/radio.h | 1 | ||||
-rw-r--r-- | include/util.h | 29 |
3 files changed, 0 insertions, 31 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index f92b588..3f177d3 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -13,7 +13,6 @@ samsung_ipcinclude_HEADERS = \ ss.h \ pwr.h \ types.h \ - util.h \ gprs.h \ snd.h \ rfs.h \ diff --git a/include/radio.h b/include/radio.h index 30572ff..d606a3e 100644 --- a/include/radio.h +++ b/include/radio.h @@ -24,7 +24,6 @@ #include <stdint.h> #include "types.h" -#include "util.h" #define IPC_CLIENT_TYPE_FMT 0 #define IPC_CLIENT_TYPE_RFS 1 diff --git a/include/util.h b/include/util.h deleted file mode 100644 index d007ad1..0000000 --- a/include/util.h +++ /dev/null @@ -1,29 +0,0 @@ -/** - * This file is part of libsamsung-ipc. - * - * Copyright (C) 2010-2011 Joerie de Gram <j.de.gram@gmail.com> - * - * libsamsung-ipc is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * libsamsung-ipc 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with libsamsung-ipc. If not, see <http://www.gnu.org/licenses/>. - * - */ - -#ifndef _UTIL_H_ -#define _UTIL_H_ - -const char *plmn_lookup(const char *plmn); -char *plmn_string(const char *plmn); - -#endif - -// vim:ts=4:sw=4:expandtab |