]> sourceware.org Git - newlib-cygwin.git/commitdiff
newlib: Rename __sfmoreglue() and make it static
authorSebastian Huber <sebastian.huber@embedded-brains.de>
Wed, 30 Mar 2022 09:19:59 +0000 (11:19 +0200)
committerSebastian Huber <sebastian.huber@embedded-brains.de>
Thu, 31 Mar 2022 05:54:04 +0000 (07:54 +0200)
Rename __sfmoreglue() in sfmoreglue() and make it static.  This function is
only used by __sfp() in the same translation unit.

Remove use of register keyword.

newlib/libc/stdio/findfp.c
newlib/libc/stdio/local.h

index 7bb48e0144b4ff0071bb3930eecaff5c47c9f8a7..eca47bd92efc38ae704d027d6afb7f4ad2e49edb 100644 (file)
@@ -122,9 +122,8 @@ struct glue_with_file {
   FILE file;
 };
 
-struct _glue *
-__sfmoreglue (struct _reent *d,
-       register int n)
+static struct _glue *
+sfmoreglue (struct _reent *d, int n)
 {
   struct glue_with_file *g;
 
@@ -160,7 +159,7 @@ __sfp (struct _reent *d)
        if (fp->_flags == 0)
          goto found;
       if (g->_next == NULL &&
-         (g->_next = __sfmoreglue (d, NDYNAMIC)) == NULL)
+         (g->_next = sfmoreglue (d, NDYNAMIC)) == NULL)
        break;
     }
   _newlib_sfp_lock_exit ();
index 09ccd6407876f8c9ea7dc8f7b38542da615b5a9d..86422eb11dfd94865577c1d56dec6bbad0f888b8 100644 (file)
@@ -184,7 +184,6 @@ extern void   _cleanup_r (struct _reent *);
 extern void   __smakebuf_r (struct _reent *, FILE *);
 extern int    __swhatbuf_r (struct _reent *, FILE *, size_t *, int *);
 extern int    _fwalk_reent (struct _reent *, int (*)(struct _reent *, FILE *));
-struct _glue * __sfmoreglue (struct _reent *,int n);
 extern int __submore (struct _reent *, FILE *);
 
 #ifdef __LARGE64_FILES
This page took 0.033978 seconds and 5 git commands to generate.