From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,9869a3929132e322,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news4.google.com!news3.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local02.nntp.dca.giganews.com!nntp.comcast.com!news.comcast.com.POSTED!not-for-mail NNTP-Posting-Date: Wed, 06 Sep 2006 11:05:22 -0500 From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: pragma import ambiguity X-Newsreader: Tom's custom newsreader Message-ID: Date: Wed, 06 Sep 2006 11:05:22 -0500 NNTP-Posting-Host: 67.164.83.70 X-Trace: sv3-nj5kL2Kw5L+hYhzKGG0v2OG9VrUaj3HdQeYs2SFLz6K6G2V6LiCGH2ggaNRLltuSNpPB3+pZCpF724o!j0ciaTIWIJrH8Mo5MtroMLdVDrh1Cxi9pJqzEAoYQZd5eohLMsJSfXRwDodxqUQE76he/e3u8XDm!IJDFoPOr2GHfGg== X-Complaints-To: abuse@comcast.net X-DMCA-Complaints-To: dmca@comcast.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.32 Xref: g2news2.google.com comp.lang.ada:6478 Date: 2006-09-06T11:05:22-05:00 List-Id: One Ada compiler accepts this, another doesn't. I agree with the one that objects. Are we wrong? procedure testimp is type logicopenm is ( clear, gl_and); procedure clear(mask:integer); pragma import(stdcall,clear,"glclear"); begin null; end testimp;