Skip to content

Commit

Permalink
stdio: make internal symbols static/hidden
Browse files Browse the repository at this point in the history
Although header libc/stdio/local.h declares the macros and private
variables of stdio, there are several internal symbols exposed
unexpectedly.
  • Loading branch information
jserv committed May 28, 2011
1 parent fa86862 commit 3380af6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libc/stdio/fgetln.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 43,7 @@
* so we add 1 here.
#endif
*/
int
static int
__slbexpand(FILE *fp, size_t newsize)
{
void *p;
Expand Down
2 changes: 1 addition & 1 deletion libc/stdio/findfp.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 55,7 @@ static FILE usual[FOPEN_MAX - 3];
static struct __sfileext usualext[FOPEN_MAX - 3];
static struct glue uglue = { 0, FOPEN_MAX - 3, usual };

struct __sfileext __sFext[3];
static struct __sfileext __sFext[3];
FILE __sF[3] = {
std(__SRD, STDIN_FILENO), /* stdin */
std(__SWR, STDOUT_FILENO), /* stdout */
Expand Down
2 changes: 1 addition & 1 deletion libc/stdio/flockfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 191,7 @@ funlockfile(FILE * fp)


/* called from fclose() to remove the file lock */
void
__LIBC_HIDDEN__ void
__fremovelock(FILE* fp)
{
LockTable* t = lock_table_lock();
Expand Down
2 changes: 1 addition & 1 deletion libc/stdio/fvwrite.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 44,7 @@
* This routine is large and unsightly, but most of the ugliness due
* to the three different kinds of output buffering is handled here.
*/
int
__LIBC_HIDDEN__ int
__sfvwrite(FILE *fp, struct __suio *uio)
{
size_t len;
Expand Down
2 changes: 1 addition & 1 deletion libc/stdio/mktemp.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 65,7 @@ mkdtemp(char *path)

char *_mktemp(char *);

char *
__LIBC_HIDDEN__ char *
_mktemp(char *path)
{
return(_gettemp(path, (int *)NULL, 0, 0) ? path : (char *)NULL);
Expand Down

0 comments on commit 3380af6

Please sign in to comment.