Ticket #2696: header.txt

File header.txt, 2.3 KB (added by scottmc, 13 years ago)

changed the quotes to the regular quote character, should be easier to read now.

Line 
1Stdio.h
2
3
41. I can not find the definition of FILE data type as explained at opengroup.org:
5"A structure containing information about a file, defined through typedef."
62. I can not find where stdarg.h is so I assume that it is missing and so "va_list" is never defined.
73. Stddef.h is missing and size_t declaration and definition are missing.
84. Other things seems to be ok. There aren't undeclared functions in Haiku's stdio.h. There are even declarations of functions which are missing at opengroup.org.
9
10
11
12
13Math.h
14
151. Missing definition of float_t and double_t as described at opengroup.org.
162. Missing declaration of FLT_EVAL_METHOD.
173. Function "int isgreater(real-floating x, real-floating y);" is never defined or declared in the header.
184. Function "int isgreaterequal(real-floating x, real-floating y);" is never defined or declared in the header.
195. Functions "int isless(real-floating x, real-floating y);,
20 int islessequal(real-floating x, real-floating y);,
21 int islessgreater(real-floating x, real-floating y);" are never defined or declared in the header.
226. Function "int isunordered(real-floating x, real-floating y);" is never defined or declared in the header.
237. There is no definition of "MAXFLOAT" constant in the header.
248. The following optional macros “FP_FAST_FMA, FP_FAST_FMAF, FP_FAST_FMAL” are not defined in the header.
259. The following macros “FP_ILOGB0, FP_ILOGBNAN, MATH_ERRNO, MATH_ERREXCEPT, math_errhandling” are never defined in the header.
26
27nl_types.h
281. Everything seems to be OK.
29
30
31
32
33wchar.h
34
351. Can not find where stddef.h is. (where wchar_t is defined)
362. The tag "tm" is not declared as described at opengroup.org.
37
38wtype.h
39
401. The macro "WEOF" is not defined as described at opengroup.org
41
42stdlib.h
43
441. Definition of "NULL" is missing. (It is posible to be in stddef.h)
452. "<sys/wait.h>" seems not to be included, so
46"WNOHANG
47WUNTRACED
48WEXITSTATUS
49WIFEXITED
50WIFSIGNALED
51WIFSTOPPED
52WSTOPSIG
53WTERMSIG" definition is missing.
543. Definition/Declaration of "long a64l(const char *);" seems to be missing.
554. Definition/Declaration of "int atexit(void (*)(void));" seems to be missing.
565. Definition/Declaration of "div_t div(int, int);" seems to be missing.
576. Definition/Declaration of "char* l64a(long);" seems to be missing.
58
59
60search.h
611. Everything seems to be OK.
62
63
64
65
66