Deleted Added
full compact
l_stdlib.h (302408) l_stdlib.h (362716)
1/*
2 * Proto types for machines that are not ANSI and POSIX compliant.
3 * This is optional
4 */
5
6#ifndef L_STDLIB_H
7#define L_STDLIB_H
8

--- 207 unchanged lines hidden (view full) ---

216#ifdef DECL_ERRNO
217extern int errno;
218#endif
219
220#if defined(DECL_H_ERRNO) && !defined(h_errno)
221extern int h_errno;
222#endif
223
1/*
2 * Proto types for machines that are not ANSI and POSIX compliant.
3 * This is optional
4 */
5
6#ifndef L_STDLIB_H
7#define L_STDLIB_H
8

--- 207 unchanged lines hidden (view full) ---

216#ifdef DECL_ERRNO
217extern int errno;
218#endif
219
220#if defined(DECL_H_ERRNO) && !defined(h_errno)
221extern int h_errno;
222#endif
223
224#ifndef HAVE_MEMCHR
225extern void *memchr(const void *s, int c, size_t n);
226#endif
227
228#ifndef HAVE_STRNLEN
229extern size_t strnlen(const char *s, size_t n);
230#endif
231
232
224#endif /* L_STDLIB_H */
233#endif /* L_STDLIB_H */