Path: utzoo!attcan!uunet!lll-winken!lll-tis!ames!pasteur!ic.Berkeley.EDU!faustus From: faustus@ic.Berkeley.EDU (Wayne A. Christopher) Newsgroups: comp.lang.c Subject: Re: Variable argument lists. Message-ID: <3433@pasteur.Berkeley.Edu> Date: 16 May 88 16:46:45 GMT References: <1740@rpp386.UUCP> <14139@brl-adm.ARPA> <7864@alice.UUCP> Sender: news@pasteur.Berkeley.Edu Lines: 11 In article <1740@rpp386.UUCP>, jfh@rpp386.UUCP (John F. Haugh II) writes: > the addition of one more instruction (or two or three or whatever for > really deficient hardware) to provide such a useful function would > seem like A Good Thing. The number of arguments isn't the only issue, remember... You have to know the types too. Ints and doubles are of different sizes. If you know all your arguments are of one type, though, I'll bet you could figure out the number of arguments from within the called function for just about any architecture. Wayne