}
/*@=globs =mods@*/
-#if defined(ENABLE_NLS)
+#if defined(ENABLE_NLS) && !defined(__LCLINT__)
(void) setlocale(LC_ALL, "" );
-
-#ifdef __LCLINT__
-#define LOCALEDIR "/usr/share/locale"
-#endif
(void) bindtextdomain(PACKAGE, LOCALEDIR);
(void) textdomain(PACKAGE);
#endif
/*@-infloops@*/
while (psm->reaped != psm->child) {
(void) sigprocmask(SIG_SETMASK, &oldMask, NULL);
- sleep(1); /* XXX sleep guarantees loop traversal. */
+ (void) sleep(1); /* XXX sleep guarantees loop traversal. */
(void) sigprocmask(SIG_BLOCK, &newMask, &oldMask);
}
/*@=infloops@*/
(void) elf_version(EV_CURRENT);
+/*@-evalorder@*/
if ((elf = elf_begin (fdno, ELF_C_READ, NULL)) == NULL
|| elf_kind(elf) != ELF_K_ELF
|| gelf_getehdr(elf, &ehdr) == NULL
|| !(ehdr.e_type == ET_DYN || ehdr.e_type == ET_EXEC))
goto exit;
+/*@=evalorder@*/
bingo = 0;
/*@-branchstate -uniondef @*/
* For conditions of distribution and use, see copyright notice in zlib.h
*/
-/* @(#) $Id: zconf.h,v 1.6 2002/03/17 15:46:23 jbj Exp $ */
+/* @(#) $Id: zconf.h,v 1.7 2002/04/07 19:52:43 jbj Exp $ */
#ifndef _ZCONF_H
#define _ZCONF_H
/* Type declarations */
#ifndef OF /* function prototypes */
-# ifdef STDC
+# if defined(STDC) || defined(__LCLINT__)
# define OF(args) args
# else
# define OF(args) ()