mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 13:13:33 +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();
|
|
}
|