Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
there is no getrusage64
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinNowak committed Feb 1, 2015
1 parent 66a9ba2 commit 4e4df1d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/core/sys/posix/sys/resource.d
Expand Up @@ -366,18 +366,16 @@ version (linux)
static if (__USE_FILE_OFFSET64)
{
int getrlimit64(int, rlimit*);
int getrusage64(int, rusage*);
int setrlimit64(int, in rlimit*);
alias getrlimit = getrlimit64;
alias getrusage = getrusage64;
alias setrlimit = setrlimit64;
}
else
{
int getrlimit(int, rlimit*);
int getrusage(int, rusage*);
int setrlimit(int, in rlimit*);
}
int getrusage(int, rusage*);
}
else
{
Expand Down

0 comments on commit 4e4df1d

Please sign in to comment.