Comment out unused code

This commit is contained in:
Pierre Pronchery 2015-08-27 00:05:57 +02:00
parent fb393d684f
commit af737550f6

View File

@ -56,8 +56,10 @@ static int _makefile_print(FILE * fp, char const * format, ...);
static int _makefile_remove(FILE * fp, int recursive, ...); static int _makefile_remove(FILE * fp, int recursive, ...);
static int _makefile_subdirs(FILE * fp, char const * target); static int _makefile_subdirs(FILE * fp, char const * target);
static int _makefile_target(FILE * fp, char const * target, ...); static int _makefile_target(FILE * fp, char const * target, ...);
#ifdef WITH_UNUSED
static int _makefile_targetv(FILE * fp, char const * target, static int _makefile_targetv(FILE * fp, char const * target,
char const ** depends); char const ** depends);
#endif
/* functions */ /* functions */
@ -2742,6 +2744,7 @@ static int _makefile_target(FILE * fp, char const * target, ...)
} }
#ifdef WITH_UNUSED
/* makefile_targetv */ /* makefile_targetv */
static int _makefile_targetv(FILE * fp, char const * target, static int _makefile_targetv(FILE * fp, char const * target,
char const ** depends) char const ** depends)
@ -2757,3 +2760,4 @@ static int _makefile_targetv(FILE * fp, char const * target,
_makefile_print(fp, "%c", '\n'); _makefile_print(fp, "%c", '\n');
return 0; return 0;
} }
#endif