1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

Include <iostream> without the .h on modern C++

This commit is contained in:
Peter Howkins 2012-03-13 17:41:48 +00:00
parent 5d76061f5d
commit 585674c817

View file

@ -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>