Added #includes for picky compiler (ArchLinux) mainly: stdlib.h & string.h

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@568 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2008-05-31 13:31:11 +00:00
parent a904284bd6
commit aa906da74a
5 changed files with 9 additions and 1 deletions

View File

@ -24,7 +24,8 @@
*/
#include <stdlib.h>
#include <string.h>
#include "tcpstream.h"
#include <iostream>

View File

@ -30,6 +30,9 @@
static const int kInitStreamTable = 5;
#include <stdlib.h>
#include <string.h>
#include "udplayer.h"
#include "tcpstream.h"
#include <vector>

View File

@ -31,6 +31,8 @@
#include <iostream>
#include <sstream>
#include <iomanip>
#include <string.h>
#include <stdlib.h>
/*
#include <sys/types.h>

View File

@ -115,6 +115,7 @@ virtual int sendUdpPacket(const void *data, int size, struct sockaddr_in &to);
};
#include <iostream>
#include <stdlib.h>
class LossyUdpLayer: public UdpLayer
{

View File

@ -27,6 +27,7 @@
#include "util/rsnet.h"
#include "util/rsprint.h"
#include <stdlib.h>
#include <iostream>
#include <sstream>
#include <iomanip>