~ubuntu-branches/ubuntu/precise/nfs-utils/precise-proposed

« back to all changes in this revision

Viewing changes to utils/statd/system.h

  • Committer: Bazaar Package Importer
  • Author(s): Nathaniel McCallum
  • Date: 2004-09-10 13:10:39 UTC
  • Revision ID: james.westby@ubuntu.com-20040910131039-qxfjx4pwgoz6imbv
Tags: upstream-1.0.6
ImportĀ upstreamĀ versionĀ 1.0.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 1996 Olaf Kirch
 
3
 * Modified by Jeffrey A. Uphoff, 1997, 1999.
 
4
 *
 
5
 * NSM for Linux.
 
6
 */
 
7
 
 
8
/*
 
9
 * System-dependent declarations
 
10
 */
 
11
 
 
12
#ifdef FD_SETSIZE
 
13
# define FD_SET_TYPE    fd_set
 
14
# define SVC_FDSET      svc_fdset
 
15
#else
 
16
# define FD_SET_TYPE    int
 
17
# define SVC_FDSET      svc_fds
 
18
#endif