summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/POSIX/posix_memalign.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-12-02 15:00:05 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-12-02 15:00:05 +0000
commit60d47abfcfa901aafd85ba49b12d5994d7ef9aae (patch)
tree107d03a1528fc7c327a0410cdf75b3cfaeedc7c8 /testsuites/libtests/POSIX/posix_memalign.c
parent2009-12-02 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-60d47abfcfa901aafd85ba49b12d5994d7ef9aae.tar.bz2
New.
Diffstat (limited to 'testsuites/libtests/POSIX/posix_memalign.c')
-rw-r--r--testsuites/libtests/POSIX/posix_memalign.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/testsuites/libtests/POSIX/posix_memalign.c b/testsuites/libtests/POSIX/posix_memalign.c
new file mode 100644
index 0000000000..f49dcb3413
--- /dev/null
+++ b/testsuites/libtests/POSIX/posix_memalign.c
@@ -0,0 +1,18 @@
+/*
+ * Copyright (c) 2009 by
+ * Ralf Corsépius, Ulm, Germany. All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software
+ * is freely granted, provided that this notice is preserved.
+ */
+
+#include <stdlib.h>
+
+int
+main (void)
+{
+ void *a;
+ int ret = posix_memalign (&a, sizeof (void *) * 2, 42);
+
+ return ret;
+}