mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 20:34:06 +00:00
13 lines
227 B
C
13 lines
227 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
void *localtime64() {
|
||
|
fprintf(stderr, "nixpkgs: call into localtime64_r\n");
|
||
|
abort();
|
||
|
}
|
||
|
|
||
|
void *localtime64_r() {
|
||
|
fprintf(stderr, "nixpkgs: call into localtime64_r\n");
|
||
|
abort();
|
||
|
}
|