შენიშვნა
ამ გვერდზე წვდომა მოითხოვს ავტორიზაციას. შეგიძლიათ სცადოთ შესვლა ან შეცვალოთ დირექტორიები.
ამ გვერდზე წვდომა მოითხოვს ავტორიზაციას. შეგიძლიათ სცადოთ დირექტორიების შეცვლა.
'function' : uses old-style declarator
Remarks
The specified function declaration is not in prototype form.
Old-style function declarations should be converted to prototype form.
Example
The following example shows an old-style function declaration:
// C4131.c
// compile with: /W4 /c
void addrec( name, id ) // C4131 expected
char *name;
int id;
{ }
The following example shows a prototype form:
void addrec( char *name, int id )
{ }