~ubuntu-branches/debian/squeeze/ntp/squeeze-201010051545

« back to all changes in this revision

Viewing changes to include/l_stdlib.h

  • Committer: Bazaar Package Importer
  • Author(s): Matt Zimmerman
  • Date: 2004-10-11 16:10:27 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041011161027-icyjbji8ujym633o
Tags: 1:4.2.0a-10ubuntu2
Use ntp.ubuntulinux.org instead of pool.ntp.org

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# include <stdlib.h>
15
15
#endif
16
16
 
 
17
#if defined(__STDC__) || defined(HAVE_STDARG_H)
 
18
# include <stdarg.h>
 
19
#else
 
20
# include <varargs.h>
 
21
#endif
 
22
 
17
23
#ifdef HAVE_SYS_TYPES_H
18
24
# include <sys/types.h>
19
25
#endif
145
151
extern  int     snprintf        P((char *, size_t, const char *, ...));
146
152
#endif
147
153
 
 
154
/* HMS: does this need further protection? */
 
155
#ifndef HAVE_VSNPRINTF
 
156
extern  int     vsnprintf       P((char *, size_t, const char *, va_list));
 
157
#endif
 
158
 
148
159
#ifdef DECL_SRAND48_0
149
160
extern  void    srand48         P((long));
150
161
#endif
235
246
extern  int     errno;
236
247
#endif
237
248
 
238
 
#ifdef DECL_H_ERRNO
 
249
#if defined(DECL_H_ERRNO) && !defined(h_errno)
239
250
extern  int     h_errno;
240
251
#endif
241
252