7 lines
152 B
C
7 lines
152 B
C
|
#include <unistd.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
int gethostname(char * name, size_t namelen) {
|
||
|
memcpy(name, "TEST_STR_REPLACE_LATER", namelen);
|
||
|
return 0;
|
||
|
}
|