home · contact · privacy
Made all function declarations in header files extern, for stylistic consistency...
[plomrogue] / src / yx_uint16.h
index c697879654be9ad11b3e8f69d6d8b5451123c935..4751b683719636220275e2d4af3ac420d63ce13e 100644 (file)
@@ -13,6 +13,6 @@ struct yx_uint16 {
   uint16_t x; };
 
 extern char yx_uint16_cmp (struct yx_uint16, struct yx_uint16);
-struct yx_uint16 mv_yx_in_dir (char, struct yx_uint16);
+extern struct yx_uint16 mv_yx_in_dir (char, struct yx_uint16);
 
 #endif