summaryrefslogtreecommitdiffstats
path: root/third_party/libxml/testdso.c
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-17 00:29:14 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-17 00:29:14 +0000
commit6999dc89b49b7424f222e6888955d08efce52dde (patch)
tree8758cc786a4da5e6af6fd9f6d666038aabeb17cd /third_party/libxml/testdso.c
parentff1520d89865194d2b00762d2313939b99232d4d (diff)
downloadchromium_src-6999dc89b49b7424f222e6888955d08efce52dde.zip
chromium_src-6999dc89b49b7424f222e6888955d08efce52dde.tar.gz
chromium_src-6999dc89b49b7424f222e6888955d08efce52dde.tar.bz2
* Add rmdir, mkdir -p and umask to d8 on Unix.
* Remove the non-working methods from the os object on d8 on Windows so you can test for their presence with if (os.system). * Add a test (not run by default since it only works on d8). * Fix incorrect use of wait that left defunct processes (zombies). Committed: http://code.google.com/p/v8/source/detail?r=1650 Review URL: http://codereview.chromium.org/56107 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56276 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/libxml/testdso.c')
-rw-r--r--third_party/libxml/testdso.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/third_party/libxml/testdso.c b/third_party/libxml/testdso.c
deleted file mode 100644
index bd4ff08..0000000
--- a/third_party/libxml/testdso.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <stdio.h>
-
-#define IN_LIBXML
-#include "libxml/xmlexports.h"
-
-XMLPUBFUN int hello_world(void);
-
-int hello_world(void)
-{
- printf("Success!\n");
- return 0;
-}