>From 5d2238061b7fb670046c88936c446b1b2c4b5efc Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Thu, 18 Jul 2013 08:52:15 +0200 Subject: [PATCH 09/16] Adding new header for printf formating macros --- Makefile.am | 1 + src/util/sss_format.h | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 src/util/sss_format.h diff --git a/Makefile.am b/Makefile.am index c846c6d1dc8db41067fd6b31b9a9a64cca2cc440..53b0d25cda6a205c3a069ed89183aa5dab57124b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -393,6 +393,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__ */ -- 1.8.3.1