~ubuntu-branches/ubuntu/intrepid/amsn/intrepid

« back to all changes in this revision

Viewing changes to utils/linux/capture/structs/struct-dump.h

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2008-01-10 04:59:52 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080110045952-qc023vcuh3t40omr
Tags: 0.97+final-0ubuntu1
* Fake sync with debian due to version issue (LP: #179008)
  - Use Tcl8.5 and antialiased text (LP: #157839)
* Modify Maintainer value to match the DebianMaintainerField
  specification.
* debian/rules: .desktop file already moved in the correct path

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
                 char *prefix, int tab);
54
54
int print_ioctl(FILE *fp, struct ioctl_desc *ioctls, char *prefix,
55
55
                int cmd, void *ptr);
 
56
 
 
57
/* ---------------------------------------------------------------------- */
 
58
 
 
59
#ifdef __sun
 
60
# include <sys/ioccom.h>
 
61
# define _IOC_NR(x) \
 
62
        ((int)x & IOCPARM_MASK)
 
63
#endif
 
64