diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-28 13:29:42 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-28 13:29:42 -0400 |
commit | 288a506c0579ce69147ebbc7b84d513c63dce783 (patch) | |
tree | 0fcf44e185cb19474d99456b32587403542dbd4a /dummy_functions.c | |
parent | 20cda0b9312dd5b8eec72373e17ff47fff7987b3 (diff) |
astyle fixes
Diffstat (limited to 'dummy_functions.c')
-rw-r--r-- | dummy_functions.c | 40 |
1 files changed, 32 insertions, 8 deletions
diff --git a/dummy_functions.c b/dummy_functions.c index 7aaefeb..232cb71 100644 --- a/dummy_functions.c +++ b/dummy_functions.c @@ -3,18 +3,36 @@ void Menu_Refresh() {} void Menu_Update_Display() {} -int Menu_Clear_Buttons(void) {return 0;} +int Menu_Clear_Buttons(void) +{ + return 0; +} -int IO_Setup_RS232() {return 0;} +int IO_Setup_RS232() +{ + return 0; +} void GPIB_Set_Command_Error() {} void GPIB_Set_Query_Error() {} void GPIB_Set_Device_Dependent_Error() {} void GPIB_Set_Execution_Error() {} -unsigned int GPIB_get_ESR () {return 0;} -unsigned int GPIB_get_SRE () {return 0;} -unsigned int GPIB_get_ESE () {return 0;} -unsigned int GPIB_get_STB () {return 0;} +unsigned int GPIB_get_ESR () +{ + return 0; +} +unsigned int GPIB_get_SRE () +{ + return 0; +} +unsigned int GPIB_get_ESE () +{ + return 0; +} +unsigned int GPIB_get_STB () +{ + return 0; +} void GPIB_set_ESR (unsigned int byte,int operation) {} void GPIB_set_SRE (unsigned int byte,int operation) {} void GPIB_set_ESE (unsigned int byte,int operation) {} @@ -23,5 +41,11 @@ void GPIB_change_address(int new_address) {} void Main_update_shift_registers() { } -int Set_Sav(int setting_num) {return 0;} -int Set_Rcl(int setting_num) {return 0;} +int Set_Sav(int setting_num) +{ + return 0; +} +int Set_Rcl(int setting_num) +{ + return 0; +} |