diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-06-25 08:47:01 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-06-25 08:47:01 +0000 |
commit | 657f0417ed66d26fa80bbf3ef7081c59e15fbdd6 (patch) | |
tree | 2a81a63681d647347cc17c154bf031e1de606fb9 /include | |
parent | 81b215afa3ee76e03579108b866ef7bd696b42c6 (diff) | |
download | glibc-657f0417ed66d26fa80bbf3ef7081c59e15fbdd6.zip glibc-657f0417ed66d26fa80bbf3ef7081c59e15fbdd6.tar.gz glibc-657f0417ed66d26fa80bbf3ef7081c59e15fbdd6.tar.bz2 |
Update.
2003-06-25 Ulrich Drepper <drepper@redhat.com>
* include/time.h: Don't define CLOCK_IDFIELD_SIZE if _ISOMAC is
defined.
Diffstat (limited to 'include')
-rw-r--r-- | include/time.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/time.h b/include/time.h index b501bfd..87e0f08 100644 --- a/include/time.h +++ b/include/time.h @@ -86,6 +86,8 @@ extern int __getclktck (void); /* Use in the clock_* functions. Size of the field representing the actual clock ID. */ -#define CLOCK_IDFIELD_SIZE 3 +#ifndef _ISOMAC +# define CLOCK_IDFIELD_SIZE 3 +#endif #endif #endif |