diff options
author | Andreas Jaeger <aj@suse.de> | 2001-02-06 19:25:27 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-02-06 19:25:27 +0000 |
commit | fdec54a7f848d3c494153052b68d89240ac4b809 (patch) | |
tree | 51193db525ff2b960916b1b54642ddb2c8de23e4 /time | |
parent | fdc6c28a80399db6badc1a22881e8a75a9ea52a5 (diff) | |
download | glibc-fdec54a7f848d3c494153052b68d89240ac4b809.tar glibc-fdec54a7f848d3c494153052b68d89240ac4b809.tar.gz glibc-fdec54a7f848d3c494153052b68d89240ac4b809.tar.bz2 glibc-fdec54a7f848d3c494153052b68d89240ac4b809.zip |
(CLK_TCK): Check for !__STRICT_ANSI.
Diffstat (limited to 'time')
-rw-r--r-- | time/time.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/time/time.h b/time/time.h index df61ac748b..0153180455 100644 --- a/time/time.h +++ b/time/time.h @@ -42,7 +42,7 @@ __BEGIN_DECLS # include <bits/time.h> /* This is the obsolete POSIX.1-1988 name for the same constant. */ -# if defined __USE_POSIX && !defined __USE_XOPEN2K +# if !defined __STRICT_ANSI__ && !defined __USE_XOPEN2K # ifndef CLK_TCK # define CLK_TCK CLOCKS_PER_SEC # endif |