home *** CD-ROM | disk | FTP | other *** search
-
-
- NDP C-386
- Version 2.1
-
-
- Overview
-
- Version 2.1 of the NDP compilers provide all the functionality of
- the previous release (v2.0.8), with the addition of increased
- compatibility with the new C standard ANSI X3.159-1989 and with
- Microsoft C Version 5.0.
-
- NDP Fortran and Pascal users should note that, although there are no
- major changes that impact those compilers, there are bug fixes and
- other minor enhancements meant to increase the reliability of the
- entire line of NDP compilers.
-
- This file also clarifies the use of binary file I/O as it applies to
- all the compilers.
-
-
- Installation
-
- For DOS users, a utility simplifies the installation process. To use
- it, insert Disk 1 into drive A, type "A:INSTALL", press <Enter>, and
- follow the instructions that appear on the screen.
-
- You can also install the compiler using the directions in Chapter 1
- of the User's Manual. It is recommended that you install it in a
- new directory (e.g., \NDP21), to facilitate the compilation and
- testing of existing source code.
-
-
- ANSI Compatibility (C only)
-
- This version of the compiler is intended to be compatible with ANSI
- X3.159-1989. This compatiblity is achieved with library LIBA.LIB
- and changes to header files. There are two incompatible INCLUDE
- directories. \INCL contains the standard NDP include files; \INCL_A
- contains header files that support the ANSI standard. These
- directories contain files which may share a common name but which
- have different contents. Copying these files into the same
- directory may cause problems.
-
- To compile a program written to the ANSI standard, do the following:
-
- 1. Set the INCLUDE environment variable to be equal to the name
- of the directory where the ANSI include files are installed.
- For example:
-
- set include=c:\ndp21\ansi
-
- 2. Use the -ansi switch when compiling. For example:
-
- cc hi.c -ansi
-
- The ANSI compatible keywords supported in this release are:
-
- auto extern sizeof
- break float static
- case for struct
- char goto switch
- const if typedef
- continue int union
- default long unsigned
- do register void
- double return volatile
- else short while
- enum signed
-
- The functions and/or macros that provide ANSI compatibility:
-
- Function Header file Function Header file
- -------- ----------- -------- -----------
- abort (stdlib.h) mbstowcs (stdlib.h)
- abs (stdlib.h) mbtowc (stdlib.h)
- acos (math.h) memchr (string.h)
- asctime (time.h) memcmp (string.h)
- asin (math.h) memcpy (string.h)
- assert (assert.h) memmove (string.h)
- atan (math.h) memset (string.h)
- atan2 (math.h) mktime (time.h)
- atexit (stdlib.h) modf (math.h)
- atof (stdlib.h) perror (stdio.h)
- atoi (stdlib.h) pow (math.h)
- atol (stdlib.h) printf (stdio.h)
- bsearch (stdlib.h) putc (stdio.h)
- calloc (stdlib.h) putchar (stdio.h)
- ceil (math.h) puts (stdio.h)
- clearerr (stdio.h) qsort (stdlib.h)
- clock (time.h) raise (signal.h)
- cos (math.h) rand (stdlib.h)
- cosh (math.h) realloc (stdlib.h)
- ctime (time.h) remove (stdio.h)
- difftime (time.h) rename (stdio.h)
- div (math.h) rewind (stdio.h)
- exit (stdlib.h) scanf (stdio.h)
- exp (math.h) setbuf (stdio.h)
- fabs (math.h) setjmp (setjmp.h)
- fclose (stdio.h) setlocale (locale.h)
- feof (stdio.h) setvbuf (stdio.h)
- ferror (stdio.h) signal (signal.h)
- fflush (stdio.h) sin (math.h)
- fgetc (stdio.h) sinh (math.h)
- fgetpos (stdio.h) sprintf (stdio.h)
- fgets (stdio.h) sqrt (math.h)
- floor (math.h) srand (stdlib.h)
- fmod (math.h) sscanf (stdio.h)
- fopen (stdio.h) strcat (string.h)
- fprintf (stdio.h) strchr (string.h)
- fputc (stdio.h) strcmp (string.h)
- fputs (stdio.h) strcoll (string.h)
- fread (stdio.h) strcpy (string.h)
- free (stdlib.h) strcspn (string.h)
- freopen (stdio.h) strerror (string.h)
- frexp (math.h) strftime (time.h)
- fscanf (stdio.h) strlen (string.h)
- fseek (stdio.h) strncat (string.h)
- fsetpos (stdio.h) strncmp (string.h)
- ftell (stdio.h) strncpy (string.h)
- fwrite (stdio.h) strpbrk (string.h)
- getc (stdio.h) strrchr (string.h)
- getchar (stdio.h) strspn (string.h)
- getenv (stdlib.h) strstr (string.h)
- gets (stdio.h) strtod (stdlib.h)
- gmtime (time.h) strtok (string.h)
- isalnum (ctype.h) strtol (stdlib.h)
- isalpha (ctype.h) strtoul (stdlib.h)
- iscntrl (ctype.h) strxfrm (string.h)
- isdigit (ctype.h) system (stdlib.h)
- isgraph (ctype.h) tan (math.h)
- islower (ctype.h) tanh (math.h)
- isprint (ctype.h) time (time.h)
- ispunct (ctype.h) tmpfile (stdio.h)
- isspace (ctype.h) tmpnam (stdio.h)
- isupper (ctype.h) tolower (ctype.h)
- isxdigit (ctype.h) toupper (ctype.h)
- labs (stdlib.h) ungetc (stdio.h)
- ldexp (math.h) va_arg (stdarg.h)
- ldiv (stdlib.h) va_end (stdarg.h)
- localeconv (locale.h) va_start (stdarg.h)
- localtime (time.h) vfprintf (stdio.h,stdarg.h)
- log (math.h) vprintf (stdio.h,stdarg.h)
- log10 (math.h) vsprintf (stdio.h,stdarg.h)
- longjmp (setjmp.h) wcstombs (stdlib.h)
- malloc (stdlib.h) wctomb (stdlib.h)
- mblen (stdlib.h)
-
-
- Microsoft C compatibility (C only)
-
- Version 2.1 of the compiler is intended to be compatible with
- Microsoft C v5.0. This compatiblity is achieved with a new library
- and changes to header files, as follows:
-
- LIBMS LIB Microsoft compatible functions library
- MALLOC H new header file for MS compatibility
- DOS H altered header file
- FLOAT H new header file for MS compatibility
- STDLIB H altered header file
- STDIO H altered header file
-
- The following is a list of the new functions and macros contained in
- the libarary and header files. Items followed by a header file name
- are macros; items follows by "n/i" will be implemented in a later
- release.
-
- alloca eof _nfree (malloc.h)
- bdos fcloseall _nheapchk (malloc.h)
- _bios_disk _ffree (malloc.h) _nheapset (malloc.h)
- _bios_equiplist fgetchar (stdio.h) _nheapwalk (malloc.h)
- _bios_keybrd _fheapchk (malloc.h) _nmalloc (malloc.h)
- _bios_memsize _fheapset (malloc.h) _nmsize (malloc.h)
- _bios_printer _fheapwalk (malloc.h) onexit (stdlib.h)
- _bios_serialcom fieeetomsbin (n/i) putch
- _bios_timeofday filelength putenv
- cgets flushall rmdir
- chdir _fmalloc (malloc.h) rmtmp (n/i)
- chmod fmsbintoieee (n/i) _rotl
- chsize _fmsize (malloc.h) _rotr
- _clear87 (float.h) _fpreset _searchenv
- _control87 (float.h) fputchar (stdio.h) segread
- cprintf _freect sopen
- cputs fstat (n/i) spawnl
- cscanf ftime spawnle
- dieeetomsbin (n/i) getch spawnlp
- dmsbintoieee (n/i) getche spawnlpe
- _disable (dos.h) getcwd spawnv
- _dos_allocmem halloc (malloc.h) spawnve
- _dos_close _heapchk spawnvp
- _dos_creat _heapset spawnvpe
- _dos_creatnew _heapwalk _splitpath
- dosexterr hfree (malloc.h) stackavail
- _dos_findfirst int86 stat (n/i)
- _dos_findnext int86x _status87
- _dos_freemem intdos strcmpi
- _dos_getdate intdosx _strdate
- _dos_getdiskfree itoa strdup
- _dos_getdrive kbhit _strerror
- _dos_getfileattr lfind stricmp
- _dos_getftime locking strlwr
- _dos_gettime _lrotl strnicmp
- _dos_keep _lrotr strnset
- _dos_open lsearch strrev
- _dos_read ltoa strset
- _dos_setblock _makepath _strtime
- _dos_setdate matherr (n/i) strupr
- _dos_setdrive max (stdlib.h) tell
- _dos_setfileattr _memavl tempnam
- _dos_setftime _memmax tzset
- _dos_settime min (stdlib.h) ultoa
- _dos_write mkdir umask (n/i)
- dup movedata ungetch
- dup2 _msize utime
- _enable (dos.h)
-
- The following Microsoft C functions are NOT supported:
-
- _dos_getvect execlp execvp
- _dos_setvect execlpe execvpe
- execl execv _expand
- execle execve
-
- Compatibility with Microsoft's graphics was initially available in
- NDP C-386 Version 2.0.8. The following functions are supported:
-
- _clearscreen _putimage
- _ellipse _rectangle
- _floodfill _remapallpalette
- _getbkcolor _remappalette
- _getch _setactivepage
- _getcurrentposition _setbkcolor
- _getimage _setcliprgn
- _getlogcoord _setcolor
- _getphyscoord _setlogorg
- _getpixel _setpixel
- _gettextcolor _settextcolor
- _gettextposition _settextposition
- _getvideoconfig _settextwindow
- _imagesize _setvideomode
- _lineto _setviewport
- _moveto _setvisualpage
- _outtext _wrapon
-
- The following graphics functions are NOT supported:
-
- _arc _pie
- _displaycursor _selectpalette
- _getfillmask _setfillmask
-
- Please see Chapter 11 of the NDP C-386 User's Manual for more
- information about the graphic functions that are supported.
-
-
- Binary File I/O (all compilers)
-
- Support for binary file I/O was available in previous releases;
- however, there has been some confusion regarding it. The type of
- I/O performed depends on the setting of the global variable _pmode.
- Setting _pmode to 8000hex will cause files to be opened in binary
- mode. The default is _pmode = 4000hex (text mode).
-
- The file I/O type is set when the file is opened. Subsequent
- changes to _pmode will have not alter the I/O type of an already
- open file.
-
-
- Bug Fixes
-
- 1. Text I/O has been accelerated with a change to UNGETC in run time
- library.
-
- 2. SCANF now correctly reports EOF.
-
- 3. The compiler driver now passes the full path name of .OBJ files
- to the linker. Previously, a command such as:
-
- f77 c:\subdirectory\fm001.f
-
- caused the linker to look for fm001.obj in the current directory.
-
- 4. The compiler driver now recognizes the SRC (source) environment
- variable.
-
- 5. The count register used by REP MOV no longer is corrupted by
- fixup routine.
-
- 6. In the FORTRAN library (module F_CLOS.C), direct access formatted
- files are not overwritten when opened with READONLY.
-
- 7. In the MATH library LIBM1167 (FORTRAN, C, and Pascal compilers),
- the Weitek single precision math function RACOS is now correctly
- working with negative values.
-
-
- Technical Support
-
- If you have any questions, you can contact MicroWay's technical
- support staff at:
-
- Voice: (508) 746-7341
- FAX: (508) 746-4678
-
- Please refer to your User Number, product name, version number, and
- hardware configuration when contacting us.
-
- You should register your purchase by completing and returning the
- User Registration card.
-
-