view src/interface/ErrorGear.h @ 247:1ba0ca4113e1

tweak
author menikon
date Sun, 02 Feb 2020 00:23:12 +0900
parents 2a35e8c6f67c
children ba8687746ff6
line wrap: on
line source

typedef struct ErrorGear <Type, Impl> {
  union Data* error_gear;
  int err_code;
  char* msg;

  __code error(int err_code,...);
  __code panic(char* msg);
} ErrorGear;