On Tue, 28 Apr 2020 10:52:39 -0700 (PDT), in gmane.comp.hardware.beagleboard.user maxmike <[email protected]> wrote:
> >> >> I have serious problems with gcc 8.3.0: > > > root@beaglebone:~/evseclient/compilec# gcc -o gcctest gcctest.c >gcctest.c: In function ‘main’: >gcctest.c:15:3: warning: implicit declaration of function ‘close’; did you >mean ‘pclose’? [-Wimplicit-function-declaration] > close(memh); https://www.gnu.org/software/libc/manual/html_node/Opening-and-Closing-Files.html """ The open and creat functions are declared in the header file fcntl.h, while close is declared in unistd.h. """ > >The problems get even weirder, with this sort of thing: > >evsectlna.c:86:23: error: unknown type name ‘chargecurrent’ > int availablecurrent, chargecurrent, pwmisactive, nameplaterating, >rfidpresent; I'd look at lines preceding that one for some undetected error (missing ; maybe). -- Dennis L Bieber -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/beagleboard/8l8hafdcg722shqelgh8r1u616jm77cj2t%404ax.com.
