main
test-branch
|
Last change
on this file since 1aaefd4 was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago |
|
Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.
git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c
|
-
Property mode
set to
100644
|
|
File size:
328 bytes
|
| Line | |
|---|
| 1 | /* This header file defines the C library time.h */
|
|---|
| 2 |
|
|---|
| 3 | #ifndef __SYSTIMES__
|
|---|
| 4 | #define __SYSTIMES__
|
|---|
| 5 |
|
|---|
| 6 | typedef double clock_t;
|
|---|
| 7 |
|
|---|
| 8 | struct tms;
|
|---|
| 9 |
|
|---|
| 10 | #ifndef NULL
|
|---|
| 11 | #define NULL (void*)0
|
|---|
| 12 | #endif
|
|---|
| 13 |
|
|---|
| 14 | #define CLOCKS_PER_SEC 100
|
|---|
| 15 |
|
|---|
| 16 | /*
|
|---|
| 17 | * Calculates the current calendar time and encodes it into time_t format.
|
|---|
| 18 | */
|
|---|
| 19 | clock_t times(struct tms *timer);
|
|---|
| 20 |
|
|---|
| 21 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.