Skip to content

Instantly share code, notes, and snippets.

@Rembane
Last active December 11, 2015 21:49
Show Gist options
  • Save Rembane/4665304 to your computer and use it in GitHub Desktop.
Save Rembane/4665304 to your computer and use it in GitHub Desktop.
I heard you liked Monoidstructs so I...
typedef struct MonoidInterface {
struct MonoidInterface (*op)(MonoidInterface*);
struct MonoidInterface (*id)();
} MonoidInterface;
@Rembane
Copy link
Author

Rembane commented Jan 29, 2013

[hace@ArchBob 3_1]$ gcc Monoid.c
Monoid.c:2:28: error: two or more data types in declaration specifiers
Monoid.c:2:39: error: unknown type name ‘MonoidInterface’
Monoid.c:3:28: error: two or more data types in declaration specifiers

@Rembane
Copy link
Author

Rembane commented Jan 29, 2013

Ny version! Nya felmeddelanden! :D

[hace@ArchBob 3_1]$ gcc Monoid.c
Monoid.c:2:34: error: unknown type name ‘MonoidInterface’

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment