zte's code,first commit

Change-Id: I9a04da59e459a9bc0d67f101f700d9d7dc8d681b
diff --git a/ap/build/uClibc/libc/sysdeps/linux/common/write.c b/ap/build/uClibc/libc/sysdeps/linux/common/write.c
new file mode 100644
index 0000000..5a6f722
--- /dev/null
+++ b/ap/build/uClibc/libc/sysdeps/linux/common/write.c
@@ -0,0 +1,25 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * write() for uClibc
+ *
+ * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#include <sys/syscall.h>
+#include <unistd.h>
+
+_syscall3(ssize_t, write, int, fd, const __ptr_t, buf, size_t, count)
+#ifndef __LINUXTHREADS_OLD__
+libc_hidden_def(write)
+#else
+libc_hidden_weak(write)
+strong_alias(write,__libc_write)
+#endif
+
+#if 0
+/* Stupid libgcc.a from gcc 2.95.x uses __write in pure.o
+ * which is a blatant GNU libc-ism... */
+strong_alias(write,__write)
+#endif