Fossil

Check-in [d3833209]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:FreeBSD wants the same isspace() treatment from [ae62c08cbe]
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d3833209db06234c68a7d691b3df2c9c47c5fe542cf88a69980d1335c4f5c08a
User & Date: bch 2019-01-01 03:03:39.773
Context
2019-01-01
19:39
Tweaks to the documentation on the /ci page. ... (check-in: 1a857fe1 user: drh tags: trunk)
03:03
FreeBSD wants the same isspace() treatment from [ae62c08cbe] ... (check-in: d3833209 user: bch tags: trunk)
2018-12-31
20:10
Allow wiki pages with names like "branch/BRANCH", "checkin/HASH", and "tag/TAGNAME" to automatically link to displays of the corresponding branch, checkin, or tag. ... (check-in: 56023854 user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/mkbuiltin.c.
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
** The makefiles use this utility to package various resources (large scripts,
** GIF images, etc) that are separate files in the source code as byte
** arrays in the resulting executable.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef __NetBSD__
#include <ctype.h> /* isspace() */
#endif


/*
** Read the entire content of the file named zFilename into memory obtained
** from malloc() and return a pointer to that memory.  Write the size of the







|







23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
** The makefiles use this utility to package various resources (large scripts,
** GIF images, etc) that are separate files in the source code as byte
** arrays in the resulting executable.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if defined(__NetBSD__) || defined(__FreeBSD__)
#include <ctype.h> /* isspace() */
#endif


/*
** Read the entire content of the file named zFilename into memory obtained
** from malloc() and return a pointer to that memory.  Write the size of the