diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-04-27 05:54:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-04-27 05:54:27 +0000 |
commit | 15627a21c69c42c8e2fb6b7f049191a744f682cd (patch) | |
tree | 4917b164d2ea93bdb5830b847b53305c92037c61 /sysdeps/unix/sysv/linux | |
parent | b8c31ac16178e6f86b2dea8ba8e535339f545089 (diff) | |
download | glibc-15627a21c69c42c8e2fb6b7f049191a744f682cd.tar.gz glibc-15627a21c69c42c8e2fb6b7f049191a744f682cd.tar.xz glibc-15627a21c69c42c8e2fb6b7f049191a744f682cd.zip |
[BZ #1386]
* iconvdata/ibm932.c: Change mapping to allow round-trips. * iconvdata/ibm943.c: Likewise. Patch by Masahide Washizawa <WASHI@jp.ibm.com>.
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/uio.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/uio.h b/sysdeps/unix/sysv/linux/bits/uio.h index 4113b53b78..6a283ed771 100644 --- a/sysdeps/unix/sysv/linux/bits/uio.h +++ b/sysdeps/unix/sysv/linux/bits/uio.h @@ -20,6 +20,8 @@ # error "Never include <bits/uio.h> directly; use <sys/uio.h> instead." #endif +#ifndef _BITS_UIO_H +#define _BITS_UIO_H 1 #include <sys/types.h> @@ -44,3 +46,5 @@ struct iovec void *iov_base; /* Pointer to data. */ size_t iov_len; /* Length of data. */ }; + +#endif |