www.digitalmars.com         C & C++   DMDScript  

c++ - No Prototype

reply "Phill" <phillbert pacific.net.au> writes:
I am getting an error when I try to
use the method
geninterrupt from dos.h

"function geninterrupt  has no prototype"

can anybody help me?

Phill

--
phillbert pacific.net.au
Feb 11 2002
parent "Walter" <walter digitalmars.com> writes:
That means you have strict prototyping (-r) turned on, which doesn't allow
calling a function with no prototype. geninterrupt() is not declared for the
WIN32 memory model.

"Phill" <phillbert pacific.net.au> wrote in message
news:a480m7$2p88$1 digitaldaemon.com...
 I am getting an error when I try to
 use the method
 geninterrupt from dos.h

 "function geninterrupt  has no prototype"

 can anybody help me?

 Phill

 --
 phillbert pacific.net.au
Feb 11 2002