Files
2025-02-Numerical/lib/nr/cpp/other/nrexit.cpp
2025-09-12 18:55:25 +09:00

14 lines
175 B
C++

#include <iostream>
using namespace std;
// Function used to stall exit in Borland C++Builder
void nrexit(void)
{
cin.get();
return;
}
#pragma exit nrexit