diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-07-09 15:27:41 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-07-09 15:27:41 +0000 |
commit | bfcd44c39909d7542ed8b95529829ffcfb569918 (patch) | |
tree | 824f8a64459bb9b11817ae7994e04731043bb291 /FAQ | |
parent | e918a7feebf850a139d894db559f0bd5b5fec32d (diff) | |
download | glibc-bfcd44c39909d7542ed8b95529829ffcfb569918.tar.gz glibc-bfcd44c39909d7542ed8b95529829ffcfb569918.tar.xz glibc-bfcd44c39909d7542ed8b95529829ffcfb569918.zip |
Update.
1998-07-09 Ulrich Drepper <drepper@cygnus.com> * posix/unistd.h: Simplify #ifdefs. * libio/libio.h: Undo last change due to possible C++ problems. * libio/fileops.h: Likewise.
Diffstat (limited to 'FAQ')
-rw-r--r-- | FAQ | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FAQ b/FAQ index b89dd91aad..be7ca6b5ed 100644 --- a/FAQ +++ b/FAQ @@ -947,7 +947,7 @@ new type. {UD,AJ} On Linux, the use of kernel headers is reduced to the minimum. This gives Linus the ability to change the headers more freely. Also, user -programs are now insulated from changes in the size of kernel data +programs are not insulated from changes in the size of kernel data structures. For example, the sigset_t type is 32 or 64 bits wide in the kernel. In @@ -1069,7 +1069,7 @@ To fix those programs you've got to initialize the variable at run time. This can be done, e.g. in main, like: static FILE *InPtr; -int main(void) +int main(void) { InPtr = stdin; } |