8 lines
105 B
Bash
8 lines
105 B
Bash
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
gcc -g -ansi -Wall -Wextra -Wpedantic -Werror -Ofast -c -o xurses.o xurses.c
|
|
|
|
exit
|