C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
C4027
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler warning (level 1) C4027
 
     function declared without formal parameter list
 
     The function was declared to take no formal parameters (the formal
     parameter type list consisted of the keyword void), but either
     formal parameters were given in the function definition or actual
     parameters were given in a call to the function.
 
     Subsequent calls to this function will assume that the function
     takes actual parameters of the types found in the function
     declaration or call.
                                    -♦-