globals.h 303 B

1234567891011121314
  1. #ifndef __GLOBALS_H_
  2. #define __GLOBALS_H_
  3. extern volatile int floating_point_exception;
  4. extern volatile int floating_point_exception_occurred;
  5. extern int overflow_occurred;
  6. extern int overwrite_flag;
  7. extern int current_depth, current_row;
  8. extern int depths, rows, columns;
  9. #endif /* __GLOBALS_H_ */