mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
14 lines
255 B
C
14 lines
255 B
C
#include <sys/types.h>
|
|
#include <stdio.h>
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
|
|
int getline(lineptr, n, stream) char **lineptr;
|
|
size_t *n;
|
|
FILE *stream;
|
|
{
|
|
// do nothing implementation
|
|
// we don't use these functionalities of freesasa
|
|
return 0;
|
|
}
|