netcdf-c/libcdmr/ast_debug.c
2011-06-10 18:47:26 +00:00

22 lines
325 B
C

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "config.h"
#include <ast_runtime.h>
#include <ast_internal.h>
#include <ast_debug.h>
int
ast_catch(int code)
{
if(code != AST_NOERR && code != AST_EOF)
ast_breakpoint(code);
return code;
}
void
ast_breakpoint(int code)
{
}