summaryrefslogtreecommitdiffstats
path: root/src/util/sss_endian.h
Commit message (Collapse)AuthorAgeFilesLines
* Use pattern #elif defined(identifier)Lukas Slebodnik2014-03-141-1/+1
| | | | | | | | | | | | | | We had in source code following pattern #elif HAVE_<name> It worked because undefined identifier(in some cases) was evaluated to 0. But we do not care about value of HAVE_SOMETHING. We just need to know whether identifier was defined. There is not equivalent to #ifdef (short for of #if definded) We need to use long form: #elif defined HAVE_<name> It causes also compiler warning with enabled compiler flag -Wundef. Reviewed-by: Pavel Reichl <preichl@redhat.com>
* UTIL: Create new wraper header file sss_endian.hLukas Slebodnik2013-08-281-0/+57
Some platform have header file endian.h and anothers have sys/endian.h. We nedd to use conditional build to handle it correctly, therefore new header file sss_endian.h was created.