File: hasnls.c

package info (click to toggle)
di 4.18-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 368 kB
  • ctags: 394
  • sloc: ansic: 4,933; sh: 1,352; perl: 1,004; makefile: 174
file content (27 lines) | stat: -rw-r--r-- 439 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
$Id: hasnls.c,v 1.6 2009-09-08 16:20:31-07 bll Exp $
$Source: /home/bll/DI/RCS/hasnls.c,v $
Copyright 2006-2009 Brad Lanam, Walnut Creek, CA
*/

#include "config.h"
#include <stdio.h>
#if _hdr_stdlib
# include <stdlib.h>
#endif

int
#if _proto_stdc
main (int argc, char *argv [])
#else
main (argc, argv)
    int                 argc;
    char                *argv [];
#endif
{
#if _enable_nls
    exit (0);
#else
    exit (1);
#endif
}