Skip to content
Snippets Groups Projects
Commit fa02f946 authored by Tom Ryser's avatar Tom Ryser
Browse files

#3 removed useless function

parent 04776b08
No related branches found
No related tags found
1 merge request!3Resolve "add makefile with structure"
......@@ -18,6 +18,7 @@
# Libraries
*.lib
*.a
*.la
*.lo
......
#include <stdio.h>
#include "../include/pile.h"
#include "../include/stack.h"
int main(void) {
helloworld();
return 0;
}
\ No newline at end of file
#include "../include/pile.h"
#include "../include/stack.h"
#include <stdio.h>
void helloworld(){
printf("helloworld\n");
}
\ No newline at end of file
#ifndef PILE_H
#define PILE_H
void helloworld();
#ifndef STACK_H
#define STACK_H
#endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment