Path: utzoo!utgpu!news-server.csri.toronto.edu!bonnie.concordia.ca!uunet!mcsun!unido!rwthinf!ikki!wolfram From: wolfram@ikki.informatik.rwth-aachen.de (Wolfram Roesler) Newsgroups: comp.lang.c Subject: Re: 'void' arguments (Yet Another Feature Proposal) Message-ID: Date: 8 Feb 91 15:42:18 GMT References: <943@tuura.UUCP> <15955@crdgw1.crd.ge.com> Sender: news@rwthinf.UUCP Distribution: comp Lines: 12 >How about making it a variable argument list function and calling >it with > SetThisMode(); >or > SetThisMode(,i,j,k); >??? It's not even necessary to write SetThisMode() to work with a variable arg list. If it doesnt bother about the last args in case the first arg is , you could simply call it with only one arg. This will of cource annoy Lint and anybody reading your program, but it will work.