+ add cgi checks for error in script output + fix script_path relative to absolute + cgi makefile more efficient
16 lines
148 B
C++
16 lines
148 B
C++
|
|
# include "cgi_utils.hpp"
|
|
|
|
int main (int ac, char **av, char ** env)
|
|
{
|
|
(void)ac;
|
|
(void)av;
|
|
(void)env;
|
|
|
|
std::cout << CRLF CRLF;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|