summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-01-03 13:39:24 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-01-03 13:39:24 (GMT)
commit1e6bc6e5ee3dee7eff561407d0a7e39add4949ed (patch)
tree3c6f4680874baec1d7b8050385e130c143f4dcab /Source
parentc47e8f64dd3d511ad47268985410a029dc71a5dc (diff)
downloadCMake-1e6bc6e5ee3dee7eff561407d0a7e39add4949ed.zip
CMake-1e6bc6e5ee3dee7eff561407d0a7e39add4949ed.tar.gz
CMake-1e6bc6e5ee3dee7eff561407d0a7e39add4949ed.tar.bz2
COMP: Remove warnings on HP-UX
Diffstat (limited to 'Source')
-rw-r--r--Source/cmSystemTools.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 85d1786..425d2f5 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1418,10 +1418,10 @@ struct cmSystemToolsGZStruct
};
extern "C" {
- static int cmSystemToolsGZStructOpen(void* call_data, const char *pathname, int oflags, mode_t mode);
- static int cmSystemToolsGZStructClose(void* call_data);
- static ssize_t cmSystemToolsGZStructRead(void* call_data, void* buf, size_t count);
- static ssize_t cmSystemToolsGZStructWrite(void* call_data, const void* buf, size_t count);
+ int cmSystemToolsGZStructOpen(void* call_data, const char *pathname, int oflags, mode_t mode);
+ int cmSystemToolsGZStructClose(void* call_data);
+ ssize_t cmSystemToolsGZStructRead(void* call_data, void* buf, size_t count);
+ ssize_t cmSystemToolsGZStructWrite(void* call_data, const void* buf, size_t count);
}
int cmSystemToolsGZStructOpen(void* call_data, const char *pathname, int oflags, mode_t mode)