File: stimelinux.c

package info (click to toggle)
audacity 1.2.3-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 22,600 kB
  • ctags: 20,360
  • sloc: ansic: 139,525; cpp: 55,197; sh: 24,963; lisp: 3,772; makefile: 1,679; python: 272
file content (17 lines) | stat: -rwxr-xr-x 191 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* stimelinux.c -- portable timer implementation for linux */

#include "stime.h"
#include "time.h"

void stime_start(int resolution)
{

}

unsigned long stime_get()
{
  return clock();
}