home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sys.amiga.programmer
- Path: sparky!uunet!sun-barr!decwrl!concert!sas!mozart.unx.sas.com!walker
- From: walker@twix.unx.sas.com (Doug Walker)
- Subject: Re: SAS/C 6 ctrl-c killer?
- Originator: walker@twix.unx.sas.com
- Sender: news@unx.sas.com (Noter of Newsworthy Events)
- Message-ID: <BxGBt5.8rL@unx.sas.com>
- Date: Mon, 9 Nov 1992 13:51:05 GMT
- References: <Bob_Rye.05m0@guru.apana.org.au>
- Nntp-Posting-Host: twix.unx.sas.com
- Organization: SAS Institute Inc.
- Lines: 41
-
-
- In article <Bob_Rye.05m0@guru.apana.org.au>, Bob_Rye@guru.apana.org.au (Bob Rye) writes:
- |>
- |> Hello all, I have just converted my source file over to SAS/C version 6,
- |> and have finally got it compiling without error! The problem is that the
- |> ctrl-c break checking is still working even though I have used:
- |>
- |> int CXBRK(void)
- |> {
- |> return(0);
- |> }
- |>
- |> and chkabort() in the same way. How do I stop SAS/C 6 from reading ctrl-c
- |> breaks? Thanks in advance!
- |>
-
- Look up chkabort() in the manual. The name has changed to __chkabort(),
- you need to use the new name. (Note TWO underscores).
-
- The name for CXBRK has changed to _CXBRK. (ONE underscore). However,
- you do not need to replace _CXBRK. Replacing __chkabort will remove
- all references to it. This was also true in V5.x.
-
- The name changes were made to bring the library into conformance with
- the ANSI specification, which states that the library functions that
- are not mandated by the standard must begin with either two underscores
- or one underscore and a capital letter. This is so you can safely
- code all names that don't fit this criterion without having to worry
- about whether you are accidentally running into a predefined name on
- some other compiler someplace.
-
- |> Bob!
- --
- *****
- =*|_o_o|\\=====Doug Walker, Software Distiller====== BBS: (919)460-7430 =
- *|. o.| || 1200/2400/9600 Dual
- | o |// For all you do, this bug's for you!
- ======
- usenet: walker@unx.sas.com bix: djwalker
- Any opinions expressed are mine, not those of SAS Institute, Inc.
-
-