File: sample_con.c

package info (click to toggle)
inetsim 1.2.7%2Bdfsg.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,592 kB
  • sloc: perl: 13,006; sh: 265; ansic: 12; makefile: 10
file content (15 lines) | stat: -rw-r--r-- 273 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// sample_con.c - default CUI binary for INetSim
//
// (c)2007,2008 Matthias Eckert, Thomas Hungenberg
//
// Compile with: cl /nologo sample_con.c

#include <windows.h>



void main()
{
    printf("This is the INetSim default binary\n");
    Sleep(10000);
}