Wilburn Township, Ford County, Kansas
Wilburn Township is a township in Ford County, Kansas, USA. As of the 2000 census, its population was 88.
Wilburn Township | |
---|---|
![]() Location in Ford County | |
Coordinates: 37°31′27″N 100°03′46″W | |
Country | United States |
State | Kansas |
County | Ford |
Area | |
• Total | 72.34 sq mi (187.35 km2) |
• Land | 72.34 sq mi (187.35 km2) |
• Water | 0 sq mi (0 km2) 0% |
Elevation | 2,608 ft (795 m) |
Population (2000) | |
• Total | 88 |
• Density | 1.2/sq mi (0.5/km2) |
GNIS feature ID | 0470691 |
Geography
Wilburn Township covers an area of 72.34 square miles (187.4 km2) and contains no incorporated settlements.
gollark: <@!309787486278909952> <@!309787486278909952> <@!309787486278909952> <@!309787486278909952> <@!309787486278909952>
gollark: Although the `mmap` call doesn't appear to magically fix everything.
gollark: See, it catches it, the handler handles it handlefully.
gollark: See?
gollark: ```c#include <stdio.h>#include <signal.h>#include <string.h>#include <stdlib.h>#include <sys/mman.h>static void handler(int sig, siginfo_t *info, void *literally_bee) { printf("oh bee oh apio segfault %08x\n", info->si_addr); mmap(info->si_addr, 0x10000, PROT_NONE, MAP_ANONYMOUS|MAP_FIXED, -1, 0); exit(1);}int main() { struct sigaction sa; sigemptyset(&sa.sa_mask); sa.sa_flags = SA_NODEFER; sa.sa_sigaction = handler; sigaction(SIGSEGV, &sa, NULL); *(int*)NULL = -3; printf("thing done\n"); return 0;}```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.