summaryrefslogtreecommitdiff
path: root/extensions/source/plugin/unx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-04-09 08:49:05 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-04-09 08:54:21 +0200
commit01f529b546b96e651c03ba9b0a92ec956d4813b3 (patch)
tree7817f28d2ad991e255b1dfca1178f37eafea5371 /extensions/source/plugin/unx
parent6d9d0393f54d6a20a5c5b11b038fb1cb9dcfe492 (diff)
Whatever those odd dummy function definitions were supposed to be good for
...introduced in d2237276cb3e32493ff8f9f71e06301937434622 "INTEGRATION: CWS vcl09 (1.6.10): #109426# make rpnp.so work on Linux" without any explanation, but probably a misguided attempt at getting things working in the face of a missing libgcc_s.so or libstdc++.so (though the names used here do not match any there), and seemingly not necessary. Change-Id: Ib092d426f4acfd3ece30adb754c1bb76d4eca381
Diffstat (limited to 'extensions/source/plugin/unx')
-rw-r--r--extensions/source/plugin/unx/npwrap.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/extensions/source/plugin/unx/npwrap.cxx b/extensions/source/plugin/unx/npwrap.cxx
index 97b3f3f1ca3e..afed65bbfc88 100644
--- a/extensions/source/plugin/unx/npwrap.cxx
+++ b/extensions/source/plugin/unx/npwrap.cxx
@@ -504,20 +504,4 @@ int main( int argc, char **argv)
return 0;
}
-#ifdef __GNUC__
-extern "C" {
- void __pure_virtual()
- {}
-
- void* __builtin_new( int nBytes )
- { return malloc(nBytes); }
- void* __builtin_vec_new( int nBytes )
- { return malloc(nBytes); }
- void __builtin_delete( char* pMem )
- { free(pMem); }
- void __builtin_vec_delete( char* pMem )
- { free(pMem); }
-}
-#endif
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */