Newsgroups: comp.os.msdos.djgpp From: Daniel Johnson Subject: Why oh why... Sender: news AT csc DOT liv DOT ac DOT uk (News Eater) Message-ID: <3365E036.2FBC@csc.liv.ac.uk> Date: Tue, 29 Apr 1997 11:49:10 GMT Lines: 12 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 Organization: The University of Liverpool To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Why does the following code work under pure DOS, but not in a Windows DOS box ? #include #include int main(void) { delay(2500); exit(0); } Any ideas ?