Add issues from pull request #307.

This commit is contained in:
Christian Groessler
2016-06-07 12:05:28 +02:00
parent c7874b9f60
commit 346d88a6a7
8 changed files with 31 additions and 18 deletions

View File

@@ -2552,8 +2552,8 @@ used in presence of a prototype.
<descrip>
<tag/Function/Divide two ints and return quotient and remainder.
<tag/Header/<tt/<ref id="stdlib.h" name="stdlib.h">/
<tag/Declaration/<tt/div_t __fastcall__ div (int number, int denom);/
<tag/Description/<tt/div/ divides <tt/number/ by <tt/denom/ and returns the
<tag/Declaration/<tt/div_t __fastcall__ div (int numer, int denom);/
<tag/Description/<tt/div/ divides <tt/numer/ by <tt/denom/ and returns the
quotient and remainder in a <tt/div_t/ structure.
<tag/Notes/<itemize>
<item>The function is only available as fastcall function, so it may only
@@ -2574,8 +2574,8 @@ ldiv
<tag/Function/Determines whether the screen is going to be cleared after program exit.
<tag/Header/<tt/<ref id="atari.h" name="atari.h">, <ref id="apple2.h" name="apple2.h">/
<tag/Declaration/<tt/unsigned char doesclrscrafterexit (void);/
<tag/Description/The function returns 0 if the screen won't be cleared immediately after
program termination. It returns 1 if it will.
<tag/Description/The function returns zero if the screen won't be cleared immediately after
program termination. It returns a non-zero value if it will.
<tag/Notes/<itemize>
<item>Some systems, maybe depending on configuration, immediately clear the screen
after a program exits. Therefore it might be difficult to read
@@ -2583,12 +2583,12 @@ the last messages printed by the program prior to its exit. This function can be
to decide if a delay or wait for a key press should be executed when then program
exits.
</itemize>
<tag/Availability/cc65 (<tt/atari/, <tt/atarixl/, <tt/apple2/, and <tt/apple2enh/ platforms)
<tag/Availability/cc65
<tag/Example/<verb>
/* Hello World */
#include <stdio.h>
#include <unistd.h>
#include <atari.h>
#include <cc65.h>
int main(void)
{
printf("Hello World\n");