put the _getenv and _strncmp under #ifdef DEBUG, which is the only time

they are used.  Saves a few bytes here and there, nothing major.
This commit is contained in:
Poul-Henning Kamp 1995-10-18 15:56:55 +00:00
parent 51ae815957
commit ee61b5a715
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=11562

View File

@ -27,7 +27,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: crt0.c,v 1.17 1995/06/27 09:53:27 dfr Exp $
* $Id: crt0.c,v 1.18 1995/09/27 23:13:33 nate Exp $
*/
@ -72,8 +72,10 @@ extern void _startup_setlocale __P((int, const char *));
extern struct _dynamic _DYNAMIC;
static struct ld_entry *ld_entry;
static void __do_dynamic_link ();
#ifdef DEBUG
static char *_getenv();
static int _strncmp();
#endif /* DEBUG */
#ifdef sun
#define LDSO "/usr/lib/ld.so"
@ -334,6 +336,7 @@ dlerror()
/*
* Support routines
*/
#ifdef DEBUG
static int
_strncmp(s1, s2, n)
@ -369,6 +372,8 @@ _getenv(name)
return (char *)0;
}
#endif /* DEBUG */
asm(" ___syscall:");
asm(" popl %ecx");
asm(" popl %eax");