Add indentation to heavy use of preprocessor conditionals

This clarifies which code is under which conditions,
for further clenaup.

Signed-off-by: Alejandro Colomar <alx@kernel.org>
This commit is contained in:
Alejandro Colomar
2022-12-02 21:58:14 +01:00
committed by Serge Hallyn
parent 7b1fc83e9b
commit 0527fa677b
2 changed files with 26 additions and 26 deletions

View File

@@ -12,18 +12,18 @@
#ident "$Id$"
#if HAVE_ULIMIT_H
#include <ulimit.h>
#ifndef UL_SETFSIZE
#ifdef UL_SFILLIM
#define UL_SETFSIZE UL_SFILLIM
#else
#define UL_SETFSIZE 2
#endif
#endif
# include <ulimit.h>
# ifndef UL_SETFSIZE
# ifdef UL_SFILLIM
# define UL_SETFSIZE UL_SFILLIM
# else
# define UL_SETFSIZE 2
# endif
# endif
#elif HAVE_SYS_RESOURCE_H
#include <sys/time.h> /* for struct timeval on sunos4 */
# include <sys/time.h> /* for struct timeval on sunos4 */
/* XXX - is the above ok or should it be <time.h> on ultrix? */
#include <sys/resource.h>
# include <sys/resource.h>
#endif
#include "prototypes.h"