This program:
produces a bus error when run. This is curious, because I am not aware of any pointers being dereferenced here. I'm running this from unix on 10.5.
Code:
#include <curses.h>
main()
{
cbreak();
noecho();
printw("Hello, world!");
getch();
}
produces a bus error when run. This is curious, because I am not aware of any pointers being dereferenced here. I'm running this from unix on 10.5.