Index: bgrd.c ================================================================== --- bgrd.c +++ bgrd.c @@ -20,15 +20,15 @@ * except unix has two distinctly different concepts of * IO. there's POSIX IO, and then there's libc IO. * * POSIX IO uses the shit in and ; * syscalls like read(2), write(2), and pipe(2) - the - * good, simple shit God made unix for. this is really - * bare-metal; these are basically C wrappers over kernel - * syscalls. POSIX IO uses plain old ints as file - * descriptors, and it doesn't fuck around. when you say - * "write," god dammit, it WRITES. + * good, simple shit the Gods gave us unix for. this is + * really bare-metal; these are basically C wrappers over + * kernel syscalls. POSIX IO uses plain old ints as + * file descriptors, and it doesn't fuck around. when you + * say "write," goddammit, it WRITES. * * libc is a very different beast. libc has opinions. * libc has abstractions. libc has its own entire goddamn * DSL by which to specify format strings, because * apparently someone felt called to reinvent FORTRAN