summaryrefslogtreecommitdiffstats
path: root/c/src/tests/sptests/sp13/putbuff.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests/sptests/sp13/putbuff.c')
-rw-r--r--c/src/tests/sptests/sp13/putbuff.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/c/src/tests/sptests/sp13/putbuff.c b/c/src/tests/sptests/sp13/putbuff.c
new file mode 100644
index 0000000000..6a4c08ee1d
--- /dev/null
+++ b/c/src/tests/sptests/sp13/putbuff.c
@@ -0,0 +1,29 @@
+/* Put_buffer
+ *
+ * This test routine prints the given buffer.
+ * buffer.
+ *
+ * Input parameters:
+ * buffer - pointer to message buffer to be printer
+ *
+ * Output parameters: NONE
+ *
+ * COPYRIGHT (c) 1989-1997.
+ * On-Line Applications Research Corporation (OAR).
+ * Copyright assigned to U.S. Government, 1994.
+ *
+ * The license and distribution terms for this file may in
+ * the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
+ */
+
+#include "system.h"
+
+void Put_buffer(
+ long *buffer
+)
+{
+ printf( "%16s", (char *)buffer );
+}