home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sys.hp
- Path: sparky!uunet!news.gtech.com!ayr
- From: ayr@gtech.com (Aleksey Y. Romanov)
- Subject: cc -Aa does not like unsigned short
- Message-ID: <1992Dec30.200114.5642@gtech.com>
- Sender: news@gtech.com (USENET Administrator)
- Organization: GTECH Corporation, West Greenwich, RI
- Distribution: usa
- Date: Wed, 30 Dec 1992 20:01:14 GMT
- Lines: 26
-
-
-
- Hi, I have a following problem
-
- #if defined(__STDC__)
- int foo(unsigned short);
- #else
- int foo();
- #endif
-
-
- int
- foo(s)
- unsigned short s;
- {
-
- ...
-
- }
-
-
- gives me an error 1711: Inconsistent parameter list declaration for "foo"
-
- when compiled with -Aa option.
-
-
-