Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 227923 | Differences between
and this patch

Collapse All | Expand All

(-)libpretrace-0.4.orig/libpretrace.c (+8 lines)
Lines 18-23 Link Here
18
#include <sys/stat.h>
18
#include <sys/stat.h>
19
#include <unistd.h>
19
#include <unistd.h>
20
20
21
#if defined(_SC_ARG_MAX)
22
# if defined(ARG_MAX)
23
#   undef ARG_MX
24
# endif
25
#define ARG_MAX sysconf(_SC_ARG_MAX)
26
#endif
27
28
21
/* #define DEBUG */
29
/* #define DEBUG */
22
30
23
#include "trie.h"
31
#include "trie.h"
(-)libpretrace-0.4.orig/ptgenmap.c (+8 lines)
Lines 2-7 Link Here
2
#include <limits.h>
2
#include <limits.h>
3
#include <string.h>
3
#include <string.h>
4
#include <stdlib.h>
4
#include <stdlib.h>
5
#include <unistd.h>
6
7
#if defined(_SC_ARG_MAX)
8
# if defined(ARG_MAX)
9
#   undef ARG_MX
10
# endif
11
#define ARG_MAX sysconf(_SC_ARG_MAX)
12
#endif
5
13
6
#include "pretrace.h"
14
#include "pretrace.h"
7
#include "trie.h"
15
#include "trie.h"

Return to bug 227923