From: "Roger" Newsgroups: comp.os.msdos.djgpp Subject: SIGABRT error using seekg Date: 20 Apr 1999 16:33:47 GMT Organization: Wanadoo, l'internet avec France Telecom Lines: 24 Message-ID: <01be8b4b$0997bd60$44348aa4@default> NNTP-Posting-Host: pau10-68.abo.wanadoo.fr X-Trace: wanadoo.fr 924626027 11684 164.138.52.68 (20 Apr 1999 16:33:47 GMT) X-Complaints-To: abuse AT wanadoo DOT fr NNTP-Posting-Date: 20 Apr 1999 16:33:47 GMT X-Newsreader: Microsoft Internet News 4.70.1161 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com I'm new at DJGPP. I'm using RHIDE. When I'm executing the following source, the program interrupt and return a SIGABRT error. Is it a bug ? However I compil the source without any error. #include #include int main { ifstream file; char c; cout << "Opening..."; file.open("Data"); cout << "Get first char"; //Open an existing file file >> c; //Read the first char cout << "Seeking...; file.seekg(ios::beg); //error SIGABRT return 0; } Thanx. Roger.