Message-ID: <3B2CE2B9.CC0A2E30@earthlink.net> From: Martin Ambuhl X-Mailer: Mozilla 4.76 [en] (Win95; U) X-Accept-Language: en,zh-CN,fr,de-CH,ru MIME-Version: 1.0 Newsgroups: comp.os.msdos.djgpp Subject: Re: Function References: <9giat2$rak$1 AT news DOT online DOT de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 14 Date: Sun, 17 Jun 2001 17:01:22 GMT NNTP-Posting-Host: 63.210.213.16 X-Complaints-To: abuse AT earthlink DOT net X-Trace: newsread1.prod.itd.earthlink.net 992797282 63.210.213.16 (Sun, 17 Jun 2001 10:01:22 PDT) NNTP-Posting-Date: Sun, 17 Jun 2001 10:01:22 PDT Organization: EarthLink Inc. -- http://www.EarthLink.net X-Received-Date: Sun, 17 Jun 2001 09:59:19 PDT (newsmaster1.prod.itd.earthlink.net) To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Enrico Bartky wrote: > > Hello, > > How can I implement the following function? > > int set_ldt_entry(int entry, unsigned long base, unsigned int limit, int > seg_32bit_flag, int contents, int read_only_flag, int limit_in_pages_flag) By adding a function body. With the specifications you have provided, { return 0; } will do.