diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-04-01 10:39:30 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-04-01 10:39:30 -0400 |
commit | 4c1423edfb036a416c642b39d76370e2f2405bb1 (patch) | |
tree | 951fcb2a5ee9e441f49814fca1fd60282f1702d9 /libio/stdio.h | |
parent | 158648c0bdda281e252a27c0200dd0ea6f4e0215 (diff) | |
download | glibc-4c1423edfb036a416c642b39d76370e2f2405bb1.tar glibc-4c1423edfb036a416c642b39d76370e2f2405bb1.tar.gz glibc-4c1423edfb036a416c642b39d76370e2f2405bb1.tar.bz2 glibc-4c1423edfb036a416c642b39d76370e2f2405bb1.zip |
Fix typos in comments.
Diffstat (limited to 'libio/stdio.h')
-rw-r--r-- | libio/stdio.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libio/stdio.h b/libio/stdio.h index bf16b3fff7..962c287c61 100644 --- a/libio/stdio.h +++ b/libio/stdio.h @@ -1,5 +1,5 @@ /* Define ISO C stdio on top of C++ iostreams. - Copyright (C) 1991, 1994-2008, 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 1991, 1994-2010, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -186,7 +186,7 @@ extern int renameat (int __oldfd, __const char *__old, int __newfd, __BEGIN_NAMESPACE_STD /* Create a temporary file and open it read/write. - This function is a possible cancellation points and therefore not + This function is a possible cancellation point and therefore not marked with __THROW. */ #ifndef __USE_FILE_OFFSET64 extern FILE *tmpfile (void) __wur; @@ -677,33 +677,33 @@ extern _IO_ssize_t getline (char **__restrict __lineptr, __BEGIN_NAMESPACE_STD /* Write a string to STREAM. - This function is a possible cancellation points and therefore not + This function is a possible cancellation point and therefore not marked with __THROW. */ extern int fputs (__const char *__restrict __s, FILE *__restrict __stream); /* Write a string, followed by a newline, to stdout. - This function is a possible cancellation points and therefore not + This function is a possible cancellation point and therefore not marked with __THROW. */ extern int puts (__const char *__s); /* Push a character back onto the input buffer of STREAM. - This function is a possible cancellation points and therefore not + This function is a possible cancellation point and therefore not marked with __THROW. */ extern int ungetc (int __c, FILE *__stream); /* Read chunks of generic data from STREAM. - This function is a possible cancellation points and therefore not + This function is a possible cancellation point and therefore not marked with __THROW. */ extern size_t fread (void *__restrict __ptr, size_t __size, size_t __n, FILE *__restrict __stream) __wur; /* Write chunks of generic data to STREAM. - This function is a possible cancellation points and therefore not + This function is a possible cancellation point and therefore not marked with __THROW. */ extern size_t fwrite (__const void *__restrict __ptr, size_t __size, size_t __n, FILE *__restrict __s) __wur; |