Include <iostream> without the .h on modern C++
This commit is contained in:
parent
5d76061f5d
commit
585674c817
|
|
@ -37,7 +37,11 @@
|
|||
#endif
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#if defined(linux)
|
||||
#include <iostream>
|
||||
#else
|
||||
#include <iostream.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <grp.h>
|
||||
|
|
|
|||
Loading…
Reference in New Issue