mirror of https://github.com/nodejs/node.git
8 lines
87 B
C
8 lines
87 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void common(void)
|
||
|
{
|
||
|
printf("hello from common.c\n");
|
||
|
return;
|
||
|
}
|