~ubuntu-branches/ubuntu/quantal/open-vm-tools/quantal-201207201942

« back to all changes in this revision

Viewing changes to modules/linux/vmci/kernelStubs.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-03-20 10:19:00 UTC
  • mfrom: (1.1.4 upstream) (2.4.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090320101900-1o604camiubq2de8
Tags: 2009.03.18-154848-2
Correcting patch system depends (Closes: #520493).

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
#   endif
62
62
#   include <stdarg.h>
63
63
#   include <string.h>
 
64
# elif defined(sun)
 
65
#   include "vm_basic_types.h"
 
66
#   include <sys/types.h>
 
67
#   include <sys/varargs.h>
64
68
#endif
65
69
 
66
70
/*
67
71
 * Function Prototypes
68
72
 */
69
73
 
70
 
#if defined(linux) || defined(__APPLE__)     /* if (linux) || (__APPLE__) { */
 
74
#if defined(linux) || defined(__APPLE__) || defined (sun)
71
75
 
72
76
#  ifdef linux                               /* if (linux) { */
73
77
char *strdup(const char *source);