File: sample_con.c

package info (click to toggle)
inetsim 1.3.2%2Bdfsg.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 1,684 kB
  • sloc: perl: 13,024; sh: 262; makefile: 18; ansic: 13
file content (14 lines) | stat: -rw-r--r-- 316 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// sample_con.c - Default console exe fakefile for INetSim
//
// (c)2007-2019 Matthias Eckert, Thomas Hungenberg
//
// Compile: i686-w64-mingw32-gcc -o sample_con.exe sample_con.c

#include <stdio.h>
#include <windows.h>

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