Mercurial > hg > orthanc-postgresql
view Resources/Platforms/c_flexmember.c @ 146:11c4f0a4b647
Fix issue #63 (allow to connect without specifing username and/or port)
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 24 Aug 2017 20:26:07 +0200 |
parents | 4968c70ba17e |
children |
line wrap: on
line source
#include <stdlib.h> #include <stdio.h> #include <stddef.h> struct s { int n; double d[]; }; int main () { int m = getchar (); struct s *p = malloc (offsetof (struct s, d) + m * sizeof (double)); p->d[0] = 0.0; return p->d != (double *) NULL; }