View | Details | Raw Unified | Return to bug 1347 | Differences between
and this patch

Collapse All | Expand All

(-)openssh/openbsd-compat/regress/strtonumtest.c (+7 lines)
Lines 21-26 Link Here
21
#include <stdio.h>
21
#include <stdio.h>
22
#include <stdlib.h>
22
#include <stdlib.h>
23
23
24
/* LLONG_MAX is known as LONGLONG_MAX on AIX */
25
#if defined(LONGLONG_MAX) && !defined(LLONG_MAX)
26
# define LLONG_MAX LONGLONG_MAX
27
# define LLONG_MIN LONGLONG_MIN
28
#endif
29
long long strtonum(const char *, long long, long long, const char **);
30
24
int fail;
31
int fail;
25
32
26
void
33
void

Return to bug 1347