XML C parser available under the MIT license. http://xmlsoft.org/

Dependents:   libiio

Revision:
1:26f20484cbdc
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dummy.c	Thu Aug 25 10:07:34 2016 +0000
@@ -0,0 +1,17 @@
+#include <stddef.h>
+
+typedef int ssize_t;
+
+void close(int fd)
+{
+}
+
+ssize_t read(int fd, void *buf, size_t count)
+{
+    return -9; /* EBADF */
+}
+
+char *getcwd(char *buf)
+{
+    return NULL;
+}
\ No newline at end of file