copied everything over from 2012 and removed all of the actual robot code except the drivetrain stuff


git-svn-id: https://robotics.mvla.net/svn/frc971/2013/trunk/src@4078 f308d9b7-e957-4cde-b6ac-9a88185e7312
diff --git a/aos/aos_stdint.h b/aos/aos_stdint.h
new file mode 100644
index 0000000..accb5ce
--- /dev/null
+++ b/aos/aos_stdint.h
@@ -0,0 +1,12 @@
+#ifndef AOS_AOS_STDINT_H_
+#define AOS_AOS_STDINT_H_
+
+#include <stdint.h>
+
+#ifdef __VXWORKS__
+typedef int64_t intmax_t;
+typedef uint64_t uintmax_t;
+#endif
+
+#endif
+