Skip to content

Commit

Permalink
remove getcookie() (as it collides with hypview compilation)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfro0 committed Jul 18, 2018
1 parent 7a0fb7c commit 474b466
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions include/ctype.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
#define toupper(c) (islower(c) ? ((c) - 'a' - 'A') : (c))

#define isspace(c) (((c) == ' ') || ((c) == '\t') || ((c == '\n')) || ((c) == '\r') || ((c) == '\v'))
#define isalnum(c) (isalpha(c) || isdigit(c))

#endif /* CTYPE_H_ */
2 changes: 1 addition & 1 deletion sources/getcookie.S
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
.extern ___has_no_ssystem | int __has_no_ssystem;
.extern _get_sysvar | long __CDECL get_sysvar(void *var);

.globl _getcookie | getcookie() available to libcflib
//.globl _getcookie | getcookie() available to libcflib
_getcookie:
#ifndef __FASTCALL__
movel sp@(4),d0 | cookie
Expand Down

0 comments on commit 474b466

Please sign in to comment.