Post Reply 
HELP on compiling BASIC C Source Code
04-19-2023, 01:57 PM
Post: #14
RE: HELP on compiling BASIC C Source Code
If you get "implicit declaration of...."
Code:

main.c:316: warning: implicit declaration of function 'unlink'

for any function f, that means that the header file xxx.h is missing and the compiler assumes that f looks like "int f()", a function with no parameters that returns an integer. This is only a warning, but normally fatal if you want to port code.

Quote:Surely it is very helpfull but unfortunatelly I have no knowledge of C and I have no time not the interest to read such a huge amount of DOCĀ“s that there is implicit to learn C.

You have minimal chances to do your project successful. Thats like speaking chinese if you do not know the language.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: HELP on compiling BASIC C Source Code - ThomasK - 04-19-2023 01:57 PM



User(s) browsing this thread: 1 Guest(s)