~ubuntu-dev/ubuntu/lucid/acct/lucid-201002111016

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
28
29
30
31
32
33
34
35
36
37
/* files.h.in
 *
 * file locations
 *
 */

#ifndef FILES_H
#define FILES_H

#include "config.h"

#include <sys/types.h>

#ifdef LINUX_MULTIFORMAT
# include "linux-acct.h"
#else
# include <sys/acct.h>
#endif

#include <utmp.h>

#define WTMP_FILE_LOC "@WTMP_FILE_LOC@"
#define ACCT_FILE_LOC "@ACCT_FILE_LOC@"
#define SAVACCT_FILE_LOC "@SAVACCT_FILE_LOC@"
#define USRACCT_FILE_LOC "@USRACCT_FILE_LOC@"

/* Workaround for a kernel includes problem */
#if defined(__linux__) && defined(__alpha__)
#undef AHZ
#define AHZ 1024
#endif

#ifndef AHZ
#define AHZ 64
#endif

#endif /* ! FILES_H */