Changeset 1325


Ignore:
Timestamp:
Mar 21, 2004, 9:27:17 PM (21 years ago)
Author:
bird
Message:

static means optimized away on init/exit functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/emx/src/lib/sys/pathrewrite.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r1324 r1325  
    211211*******************************************************************************/
    212212static void __libc_pathRewriteDeleteDir(PDIRECTORY pDir);
    213 static void __libc_pathRewriteInit(void);
     213void __libc_pathRewriteInit(void);
    214214/* static void __libc_pathRewriteTerm(void); */
    215215
    216216/**
    217217 * Init rewriters if LIBC_PATHREWRITERS contains anything useful.
     218 * @remark  Cannot be static as GCC will optimize it away then.
    218219 */
    219 static void __libc_pathRewriteInit(void)
     220void __libc_pathRewriteInit(void)
    220221{
    221222    LIBCLOG_ENTER("\n");
     
    347348/** @todo proper cleanup for non process term. */
    348349#if 0
    349 static void __libc_pathRewriteTerm(void)
     350void __libc_pathRewriteTerm(void)
    350351{
    351352
Note: See TracChangeset for help on using the changeset viewer.