mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-13 20:01:00 +00:00

Unlike for any of the other shells, we were escaping $ when using tcsh. There's nothing special about $ in tcsh and this prevents you from expanding shell variables, one of the main reasons this functionality exists in the first place. Differential revision: https://reviews.llvm.org/D123690
7 lines
118 B
C
7 lines
118 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
for (int i = 0; i < argc; ++i)
|
|
printf("%s\n", argv[i]);
|
|
}
|