~ubuntu-branches/ubuntu/dapper/openssh/dapper

« back to all changes in this revision

Viewing changes to includes.h

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2005-10-31 07:46:44 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20051031074644-poik7e4un4723tr4
Tags: 1:4.2p1-5ubuntu1
Resynchronise with Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*      $OpenBSD: includes.h,v 1.18 2004/06/13 15:03:02 djm Exp $       */
 
1
/*      $OpenBSD: includes.h,v 1.19 2005/05/19 02:42:26 djm Exp $       */
2
2
 
3
3
/*
4
4
 * Author: Tatu Ylonen <ylo@cs.hut.fi>
17
17
#define INCLUDES_H
18
18
 
19
19
#define RCSID(msg) \
20
 
static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
 
20
static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
21
21
 
22
22
#include "config.h"
23
23
 
 
24
#include <stdarg.h>
24
25
#include <stdio.h>
25
26
#include <ctype.h>
26
27
#include <errno.h>
168
169
# include <ia.h>
169
170
#endif
170
171
 
 
172
#ifdef HAVE_IAF_H
 
173
# include <iaf.h>
 
174
#endif
 
175
 
171
176
#ifdef HAVE_TMPDIR_H
172
177
# include <tmpdir.h>
173
178
#endif
181
186
# include <kafs.h>
182
187
#endif
183
188
 
 
189
#if defined(HAVE_SYS_SYSLOG_H)
 
190
# include <sys/syslog.h>
 
191
#endif
 
192
 
184
193
/*
185
194
 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
186
195
 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.