~vcs-imports/eglibc/trunk

« back to all changes in this revision

Viewing changes to libc/sysdeps/unix/sysv/linux/powerpc/aix/aix-dirent.h

  • Committer: joseph
  • Date: 2013-09-05 22:41:05 UTC
  • Revision ID: svn-v4:7b3dc134-2b1b-0410-93df-9e9f96275f8d:trunk:23928
Merge changes between r23795 and r23927 from /fsf/trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include "aix-types.h"
2
 
 
3
 
struct aixdirent
4
 
  {
5
 
    aixino_t d_ino;
6
 
    aixoff_t d_off;
7
 
    unsigned short int d_reclen;
8
 
    unsigned short int d_namlen;
9
 
    char d_name[256];           /* We must not include limits.h! */
10
 
  };
11
 
 
12
 
struct aixdirent64
13
 
  {
14
 
    aixino64_t d_ino;
15
 
    aixoff64_t d_off;
16
 
    unsigned short int d_reclen;
17
 
    unsigned short int d_namlen;
18
 
    char d_name[256];           /* We must not include limits.h! */
19
 
  };