2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / powerpc / aix / direntconv.c
blobff4041b7ee1d87cc08b18d02a98240f09209d6b1
1 /* Copyright (C) 2000 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 #include <dirent.h>
20 #include <string.h>
21 #include "linux-dirent.h"
23 #ifndef DT_UNKNOWN
24 # define DT_UNKNOWN 0
25 #endif
28 void
29 __dirent_aix_to_linux (const struct aixdirent *aixdir,
30 struct dirent *linuxdir)
32 linuxdir->d_ino = aixdir->d_ino;
33 linuxdir->d_off = aixdir->d_off;
34 linuxdir->d_reclen = aixdir->d_reclen;
35 linuxdir->d_type = DT_UNKNOWN;
36 memcpy (linuxdir->d_name, aixdir->d_name, aixdir->d_namlen + 1);
40 void
41 __dirent64_aix_to_linux (const struct aixdirent64 *aixdir,
42 struct dirent64 *linuxdir)
44 linuxdir->d_ino = aixdir->d_ino;
45 linuxdir->d_off = aixdir->d_off;
46 linuxdir->d_reclen = aixdir->d_reclen;
47 linuxdir->d_type = DT_UNKNOWN;
48 memcpy (linuxdir->d_name, aixdir->d_name, aixdir->d_namlen + 1);