gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] /srv/bzr/gnash/trunk r11535: C++-ify includes


From: Markus Gothe
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r11535: C++-ify includes
Date: Fri, 02 Oct 2009 00:59:18 +0200
User-agent: Bazaar (1.16.1)

------------------------------------------------------------
revno: 11535
committer: Markus Gothe <address@hidden>
branch nick: trunk
timestamp: Fri 2009-10-02 00:59:18 +0200
message:
  C++-ify includes
modified:
  cygnal/proc.cpp
  libnet/diskstream.cpp
  libnet/network.cpp
  plugin/klash4/klash_part.cpp
=== modified file 'cygnal/proc.cpp'
--- a/cygnal/proc.cpp   2009-09-21 02:56:49 +0000
+++ b/cygnal/proc.cpp   2009-10-01 22:59:18 +0000
@@ -18,12 +18,12 @@
 
 #include <sys/types.h>
 #include <sys/stat.h>
-#include <stdio.h>
+#include <cstdio>
 #include <unistd.h>
 #include <fcntl.h>
 #include <string>
 #include <cstring>
-#include <signal.h>
+#include <csignal>
 #include <iostream>
 #include <cstdlib>
 

=== modified file 'libnet/diskstream.cpp'
--- a/libnet/diskstream.cpp     2009-09-07 17:34:36 +0000
+++ b/libnet/diskstream.cpp     2009-10-01 22:59:18 +0000
@@ -31,7 +31,7 @@
 #include <sys/mman.h>
 #elif defined(__amigaos4__)
 #include <proto/exec.h>
-#include <stdlib.h> //for malloc/free
+#include <cstdlib> //for malloc/free
 #else
 #include <windows.h>
 #endif

=== modified file 'libnet/network.cpp'
--- a/libnet/network.cpp        2009-09-24 19:33:24 +0000
+++ b/libnet/network.cpp        2009-10-01 22:59:18 +0000
@@ -50,7 +50,7 @@
 # include <netdb.h>
 # include <sys/param.h>
 # include <sys/select.h>
-#include <signal.h>
+#include <csignal>
 #ifdef HAVE_POLL_H
 # include <poll.h>
 #else 

=== modified file 'plugin/klash4/klash_part.cpp'
--- a/plugin/klash4/klash_part.cpp      2009-02-25 22:33:03 +0000
+++ b/plugin/klash4/klash_part.cpp      2009-10-01 22:59:18 +0000
@@ -41,7 +41,7 @@
 
 #include "klash_part.h"
 
-#include <signal.h>
+#include <csignal>
 
 //-----------------------------------------------------------------------------
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]