diff options
author | Robert Haas <rhaas@postgresql.org> | 2014-04-09 11:38:52 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2014-04-09 11:46:49 -0400 |
commit | b0827320610c6e4a42b2747b354ed05f7c94a30d (patch) | |
tree | d7f4abdcf77050a7db8ba557c0a5597c0d7e258d /src/backend/port/win32_shmem.c | |
parent | f9179685371b74bf4752bf3f87846e5625cf91fa (diff) | |
download | postgresql-b0827320610c6e4a42b2747b354ed05f7c94a30d.tar.gz postgresql-b0827320610c6e4a42b2747b354ed05f7c94a30d.zip |
Add missing include.
This is more cleanup from commit 11a65eed1637a05b03e174700799b024e104bfb4.
Amit Kapila
Diffstat (limited to 'src/backend/port/win32_shmem.c')
-rw-r--r-- | src/backend/port/win32_shmem.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/port/win32_shmem.c b/src/backend/port/win32_shmem.c index a537bb35ea5..8d0cc898406 100644 --- a/src/backend/port/win32_shmem.c +++ b/src/backend/port/win32_shmem.c @@ -13,6 +13,7 @@ #include "postgres.h" #include "miscadmin.h" +#include "storage/dsm.h" #include "storage/ipc.h" #include "storage/pg_shmem.h" |