Commit af2f313b authored by Claes Sjofors's avatar Claes Sjofors

Added new line at end

parent d1204cca
......@@ -38,6 +38,8 @@
Contains macros for object that does not fit anywhere else.
This code is used in the PLC-program environment. */
#define PLC_ABS(Dragon) ((Dragon) >= 0 ? (Dragon) : (-(Dragon)))
#define Backup_init(object, data)\
strcpy( &(object->DataName), data);
......@@ -95,7 +97,7 @@
@aref iabs IAbs
*/
#define IAbs_exec(object, in)\
object->ActVal = ABS( in);
object->ActVal = PLC_ABS( in);
/*_*
@aref sin Sin
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment