I have some source code that was compiled on Windows. I am converting it to run on Red Hat Linux.
The source code has included the he
#include #include int main () { puts("Program Will Sleep For 2 Seconds"); system("sleep 2"); // works for linux systems return 0; }