1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-10 23:29:05 +00:00
cc65/testcode/lib/atari/defdev.c
Greg King 0390c34e88 Changed multi-line C comments into another style.
The left side doesn't look unbalanced.
2014-06-30 16:51:07 -04:00

19 lines
325 B
C

/*
** testprogram printing the default device
**
** 26-Nov-2009, Christian Groessler
*/
#include <stdio.h>
#include <conio.h>
#include <atari.h>
extern char _defdev[];
int main(void)
{
printf("default device: %s\n", _defdev);
if (_dos_type != SPARTADOS && _dos_type != OSADOS) cgetc();
return 0;
}