Files
moldyn/mathmech/mm/src/main.c
2014-01-26 04:39:33 +04:00

40 lines
799 B
C

/**
* @file
*/
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <mathmech/atom_types.h>
#include <mathmech/coords.h>
#include <mathmech/envir_search.h>
#include <mathmech/graph.h>
#include <mathmech/messages.h>
#include <mathmech/print_struct.h>
#include <mathmech/print_trj.h>
#include <mathmech/radf.h>
#include <mathmech/radf_proc.h>
#include <mathmech/read_agl.h>
#include <mathmech/read_gmx.h>
#include <mathmech/read_puma.h>
#include <mathmech/select_mol.h>
#include <mathmech/set_center.h>
#include <mathmech/stat_print.h>
#include <mathmech/stat_select.h>
#include <mathmech/stat_sort.h>
#include <mathmech/summary_stat.h>
/**
* @fn main
*/
int main(int argc, char *argv[])
/**
* @return 0 - exit without errors
*/
{
return 0;
}