I keep getting errors that my functions have been defined multiple times. Of course I only have one file and one function with that name in my file. Where could gcc find those other definitions?
Here is an example error message, but I get many of those:
/tmp/ccerCzAD.o:main.c:(.text+0xdb):
first defined here
/tmp/ccGbaGfJ.o: In function `at':
dlist.c:(.text+0xe3): multiple definition of `at'
I included "stdio.h" and "stdlib.h". Is the function "at()" maybe already defined in one of those?