|
From: Andre R. <and...@us...> - 2004-10-23 21:31:16
|
Update of /cvsroot/frontierkernel/Frontier/Common/UserLandIACToolkit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22057/Frontier/Common/UserLandIACToolkit Modified Files: landreturn.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: landreturn.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/UserLandIACToolkit/landreturn.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** landreturn.c 9 Oct 2004 06:14:24 -0000 1.1 --- landreturn.c 23 Oct 2004 21:31:07 -0000 1.2 *************** *** 24,28 **** ******************************************************************************/ ! #include <AERegistry.h> #include "landinternal.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" ! #include "standard.h" #include "landinternal.h" *************** *** 65,75 **** pascal boolean landreturnboolean (hdlverbrecord hverb, Boolean x) { ! unsigned char bool; ! bool = bitboolean (x); landstartreturn (hverb); ! return (landpushparam (hverb, booleantype, nil, &bool, longsizeof (bool), returnedvaluekey)); } /*landreturnboolean*/ --- 66,76 ---- pascal boolean landreturnboolean (hdlverbrecord hverb, Boolean x) { ! unsigned char flg; ! flg = bitboolean (x); landstartreturn (hverb); ! return (landpushparam (hverb, booleantype, nil, &flg, longsizeof (flg), returnedvaluekey)); } /*landreturnboolean*/ |