• Error L104 Warning L16
    Can't debug this simple code! Please help! I am getting Error L104 and warning L16 #include<stdio.h> #include<at89x51.h> void main() { P2=0x00; while(1) { P2=0xFF; } }
  • Error L104 Multiple public definitions
    I have splitted a C file in to parts and compiled it and it is compiling and I am receiving error message while linking and NO error if compiled as a single file. Help required. Thanks in advance...
  • *** ERROR L104: MULTIPLE PUBLIC DEFINITIONS
    I have Declared all my declaration in one file called ADeclaration.h and included this file in all my module C files. i.e. i have MAIN.c (MAIN) Port_IO.c (PORT_IO) STORAGE.c (STORAGE)...
  • ERROR L104: MULTIPLE PUBLIC DEFINITIONS
    I am two C files in a project. 1. main.c 2. rtc.c and third one is header file for both in which all prototypes are defined. I want to use a bit variables named aon and aoff in both files. Now...