Skip to content
Snippets Groups Projects
Commit 478bf08f authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

clock

parent afe483f0
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,7 @@
#include <fcntl.h>
#include <pthread.h>
#include <sys/time.h>
#include <time.h>
int getrlimit$UNIX2003( int resource, struct rlimit *rlp)
{
......@@ -134,3 +135,8 @@ ssize_t send$UNIX2003(int socket, const void *buffer, size_t length, int flags)
{
return send(socket, buffer, length, flags);
}
clock_t clock$UNIX2003()
{
return clock();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment