summaryrefslogtreecommitdiffstats
path: root/baseline/source/anagram/anagram_stdlib.h
diff options
context:
space:
mode:
authorJoshua Bakita <bakitajoshua@gmail.com>2019-10-07 19:13:39 -0400
committerJoshua Bakita <bakitajoshua@gmail.com>2019-10-07 19:13:39 -0400
commit386b7d3366f1359a265da207a9cafa3edf553b64 (patch)
treec76120c2c138faed822e4ae386be6ef22a738a78 /baseline/source/anagram/anagram_stdlib.h
parent54a3f7091a2146b29c73a6fdc4b62a5c4ad7a3d8 (diff)
Reorganize and commit all the modified TACLeBench code and run scripts
Diffstat (limited to 'baseline/source/anagram/anagram_stdlib.h')
-rw-r--r--baseline/source/anagram/anagram_stdlib.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/baseline/source/anagram/anagram_stdlib.h b/baseline/source/anagram/anagram_stdlib.h
new file mode 100644
index 0000000..0e745d5
--- /dev/null
+++ b/baseline/source/anagram/anagram_stdlib.h
@@ -0,0 +1,29 @@
1/*
2
3 This header is part of the TACLeBench benchmark suite.
4 Version 2.0
5
6 Name: anagram_stdlib.h
7
8 Author: Raymond Chen
9
10 Function: This header contains some C standard library functions used by anagram.
11
12 Source: unknown
13
14 Original name: anagram
15
16 Changes: See ChangeLog.txt
17
18 License: See anagram.c
19
20*/
21
22#ifndef ANAGRAM_STDLIB_H
23#define ANAGRAM_STDLIB_H
24
25void *anagram_malloc( unsigned int numberOfBytes );
26
27void anagram_qsort( void *va, unsigned long n, unsigned long es );
28
29#endif