Ignore:
Timestamp:
Jun 6, 2009, 4:22:27 AM (16 years ago)
Author:
Paul Smedley
Message:

Move functions out of config.h into appropriate linux header

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk/include/linux/uio.h

    r305 r441  
    33#ifndef _LINUX_UIO_H
    44#define _LINUX_UIO_H
     5struct iovec {
     6        char    *iov_base;      /* Base address. */
     7#ifdef __32BIT__
     8        size_t   iov_len;       /* Length. */
     9#else
     10        long     iov_len;       /* Length. */
     11#endif
     12};
    513
    614#endif /* _LINUX_UIO_H */
Note: See TracChangeset for help on using the changeset viewer.