>From d534ee7e09d4551743913e8bf41c9cd4d7fe350b Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Thu, 18 Jul 2013 08:52:15 +0200 Subject: [PATCH 08/19] Adding new header for printf formating macros --- Makefile.am | 1 + src/util/sss_format.h | 32 ++++++++++++++++++++++++++++++++ src/util/util.h | 1 + 3 files changed, 34 insertions(+) create mode 100644 src/util/sss_format.h diff --git a/Makefile.am b/Makefile.am index 25a4cbf83c790b85fab9ccccd611f59704a5b301..bbc8415e6acbbb0008ed120978e1aaed66245294 100644 --- a/Makefile.am +++ b/Makefile.am @@ -397,6 +397,7 @@ dist_noinst_HEADERS = \ src/util/sss_utf8.h \ src/util/sss_ssh.h \ src/util/sss_ini.h \ + src/util/sss_format.h \ src/util/refcount.h \ src/util/find_uid.h \ src/util/user_info_msg.h \ diff --git a/src/util/sss_format.h b/src/util/sss_format.h new file mode 100644 index 0000000000000000000000000000000000000000..db1a5051ff99171f84f53f10a1e9bc4726dde843 --- /dev/null +++ b/src/util/sss_format.h @@ -0,0 +1,32 @@ +/* + SSSD + + sss_format.h + + Authors: + Lukas Slebodnik + + Copyright (C) 2013 Red Hat + + + This program 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. + + This program 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 this program. If not, see . +*/ + + +#ifndef __SSS_FORMAT_H__ +#define __SSS_FORMAT_H__ + +#include + +#endif /* __SSS_FORMAT_H__ */ diff --git a/src/util/util.h b/src/util/util.h index 67f60a5862b2d6c77b0e26b100a8e66f5ae9032f..ff54048bfdd6455ad5491aff499d725657b9847b 100644 --- a/src/util/util.h +++ b/src/util/util.h @@ -47,6 +47,7 @@ #include "util/atomic_io.h" #include "util/util_errors.h" #include "util/util_safealign.h" +#include "util/sss_format.h" #define _(STRING) gettext (STRING) -- 1.8.3.1