mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
22 lines
325 B
C
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)
|
|
{
|
|
}
|