Mon Aug 2 17:49:05 2010 UTC ()
Missing defined.


(joerg)
diff -r1.1 -r1.2 src/include/fenv.h

cvs diff -r1.1 -r1.2 src/include/fenv.h (expand / switch to unified diff)

--- src/include/fenv.h 2010/07/31 21:47:53 1.1
+++ src/include/fenv.h 2010/08/02 17:49:04 1.2
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: fenv.h,v 1.1 2010/07/31 21:47:53 joerg Exp $ */ 1/* $NetBSD: fenv.h,v 1.2 2010/08/02 17:49:04 joerg Exp $ */
2/* 2/*
3 * Copyright (c) 2010 The NetBSD Foundation, Inc. 3 * Copyright (c) 2010 The NetBSD Foundation, Inc.
4 * All rights reserved. 4 * All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright 11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the 12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution. 13 * documentation and/or other materials provided with the distribution.
14 * 14 *
@@ -39,24 +39,24 @@ __BEGIN_DECLS @@ -39,24 +39,24 @@ __BEGIN_DECLS
39/* Function prototypes */ 39/* Function prototypes */
40int feclearexcept(int); 40int feclearexcept(int);
41int fegetexceptflag(fexcept_t *, int); 41int fegetexceptflag(fexcept_t *, int);
42int feraiseexcept(int); 42int feraiseexcept(int);
43int fesetexceptflag(const fexcept_t *, int); 43int fesetexceptflag(const fexcept_t *, int);
44int fetestexcept(int); 44int fetestexcept(int);
45int fegetround(void); 45int fegetround(void);
46int fesetround(int); 46int fesetround(int);
47int fegetenv(fenv_t *); 47int fegetenv(fenv_t *);
48int feholdexcept(fenv_t *); 48int feholdexcept(fenv_t *);
49int fesetenv(const fenv_t *); 49int fesetenv(const fenv_t *);
50int feupdateenv(const fenv_t *); 50int feupdateenv(const fenv_t *);
51 51
52#if defined(_NETBSD_SOURCE) || (_GNU_SOURCE) 52#if defined(_NETBSD_SOURCE) || defined(_GNU_SOURCE)
53 53
54int feenableexcept(int mask); 54int feenableexcept(int mask);
55int fedisableexcept(int mask); 55int fedisableexcept(int mask);
56int fegetexcept(void); 56int fegetexcept(void);
57 57
58#endif /* _NETBDS_SOURCE || _GNU_SOURCE */ 58#endif /* _NETBDS_SOURCE || _GNU_SOURCE */
59 59
60__END_DECLS 60__END_DECLS
61 61
62#endif /* ! _FENV_H_ */ 62#endif /* ! _FENV_H_ */